multiply
Some checks failed
/ job (push) Failing after 1m12s

This commit is contained in:
Marc Beninca 2024-10-14 13:40:03 +02:00
parent 315aee2f21
commit 79a02a08f1
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
4 changed files with 11 additions and 13 deletions

8
multiply.py Normal file
View file

@ -0,0 +1,8 @@
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)