반응형
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)
반응형
'알고리즘 > SW expert Academy' 카테고리의 다른 글
[SW expert Academy] 2043번 서랍의 비밀번호 파이썬(Python) (0) | 2020.07.06 |
---|---|
[SW expert Academy] 2029번 몫과 나머지 출력하기 파이썬(Python) (0) | 2020.07.06 |
[SW expert Academy] 2027번 대각선 출력하기 파이썬(Python) (0) | 2020.07.05 |
[SW expert Academy] 2025번 N줄 덧셈 파이썬(Python) (0) | 2020.07.05 |
[SW expert Academy] 1933번 간단한 N의 약수 파이썬(Python) (0) | 2020.07.04 |
[SW expert Academy] 1936번 1대1 가위바위보 파이썬(Python) (0) | 2020.07.02 |
[SW expert Academy] 2019번 더블더블 파이썬(Python) (0) | 2020.07.02 |
[SW expert Academy] 1545번 거꾸로 출력해 보아요 파이썬(Python) (0) | 2020.07.02 |
최근댓글