dot/multiply.py
Marc Beninca 79a02a08f1
Some checks failed
/ job (push) Failing after 1m12s
multiply
2024-10-14 13:40:03 +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)