← Back to List

15740번: A+B - 9 ↗

Solutions

Python 3
40 B | 40 chars
A,B=input().split()
print(int(A)+int(B))