hbui
2024-07-25 11beed44c78847c91b25d8b4c9d8b3c7ada8de35
1
2
3
4
5
6
7
import sys
 
a = int(sys.argv[1])
b = int(sys.argv[2])
s = a + b
 
print(s)