Python3 코드
A, B = map(int , input().split())
print(A+B)
print(A-B)
print(A*B)
print(A//B)
print(A%B)
'백준풀이(Python)' 카테고리의 다른 글
[백준] 18108번 : 1998년생인 내가 태국에서는 2541년생?! (Python) - 단계별로 풀어보기 (0) | 2023.03.22 |
---|---|
[백준] 10926번 : ??! (Python) - 단계별로 풀어보기 (0) | 2023.03.22 |
[백준] 1008번 : A/B (Python) - 단계별로 풀어보기 (0) | 2023.03.22 |
[백준] 10998번 : A×B (Python) - 단계별로 풀어보기 (0) | 2023.03.22 |
[백준] 1001번 : A-B (Python) - 단계별로 풀어보기 (0) | 2023.03.22 |