1938.아주 간단한 계산기

풀이

a, b = list(map(int, input().split()))

print(a + b)
print(a - b)
print(a * b)
print(int(a / b))