parent
315aee2f21
commit
79a02a08f1
4 changed files with 11 additions and 13 deletions
8
multiply.py
Normal file
8
multiply.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue