4 lines
84 B
Python
4 lines
84 B
Python
try: raw_input
|
|
except: raw_input = input
|
|
|
|
print(sum(map(int, raw_input().split())))
|