SWEA - 1938 solution Aug 8, 2021 1938.아주 간단한 계산기 풀이 a, b = list(map(int, input().split())) print(a + b) print(a - b) print(a * b) print(int(a / b))