multiply
This commit is contained in:
parent
bd0e281620
commit
088d712850
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