알고리즘/SW expert Academy
[SW expert Academy] 1938번 아주 간단한 계산기 파이썬(Python)
1. 1938번 아주 간단한 계산기 파이썬(Python) 2. 코드 a,b = map(int, input().split()) print(a+b) print(a-b) print(a*b) print(a//b) a,b = map(int, input().split()) for i in [a+b, a-b, a*b, a//b] : print(i)
2020. 7. 5.
최근댓글