RosettaCodeData/Task/A+B/Python/a+b-1.py

5 lines
84 B
Python

try: raw_input
except: raw_input = input
print(sum(map(int, raw_input().split())))