← Back to List

2338번: 긴자리 계산 ↗

Solutions

Python 3
70 B | 70 chars
a=input()
b=input()
a=int(a)
b=int(b)
print(a+b)
print(a-b)
print(a*b)