문제 링크 : https://www.acmicpc.net/problem/2338
🎯 난이도: 브론즈 5
a,b 를 입력받고 출력하라는 대로 첫째 줄에 A+B, 둘째 줄에 A-B, 셋째 줄에 AxB를 출력하면 된다.
a = int(input()) b = int(input()) print(a+b) print(a-b) print(a*b)