Hong-Phuc Bui
2024-05-12 6609420bf03972212cbfaeb6b53eee66a478e7bf
1
2
3
4
5
6
7
import sys
 
a = int(sys.argv[1])
b = int(sys.argv[2])
s = a + b
 
print(s)