반응형
SOLUTION
A,B = map(int, input().split())
print(A+B) # 합
print(A-B) # 빼기
print(A*B) # 곱
print(A//B) # 몫
print(A%B) # 나머지
'코딩테스트 대비 > BOJ' 카테고리의 다른 글
[Baekjoon/Python] 11654번: 아스키코드 - 효과는 굉장했다! (0) | 2021.10.05 |
---|---|
[Baekjoon/Python] 10998번: AxB - 효과는 굉장했다! (0) | 2021.10.05 |
[Baekjoon/Python] 10172번: 개 - 효과는 굉장했다! (0) | 2021.10.05 |
[Baekjoon/Python] 10171번: 고양이 - 효과는 굉장했다! (0) | 2021.10.05 |
[Baekjoon/Python] 2475번: 검증수 - 효과는 굉장했다! (0) | 2021.10.05 |