1938 | 아주 간단한 계산기
그냥 출력할 때 +, -, *, //로 출력해주면 되는 간단한 문제 ~
+
-
*
//
a, b = map(int, input().split()) print(a+b) print(a-b) print(a*b) print(a//b)