dot/multiply.py
2025-06-08 15:57:44 +02:00

8 lines
200 B
Python

import os
try:
num1 = int(os.environ.get("INPUT_FIRSTARG"))
num2 = int(os.environ.get("INPUT_SECONDARG"))
except Exception:
exit(f"integer error for {num1} or {num2}")
print(num1 * num2)