9 lines
200 B
Python
9 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)
|