Files
kattis/twosum.py
2022-05-13 21:35:17 +02:00

3 lines
49 B
Python

a, b = map(int, input().split(" "))
print(a + b)