숫자 n과 m을 입력받은 후 +, -, x 연산을 하야 출력하는 문제 n = int(input()) m = int(input()) print(n+m) print(n-m) print(n*m)