a,b = map(int, input().split())
print(a+b)
print(a-b)
print(a*b)
print(a//b)
print(a%b)
'Coding_test(백준) > Python' 카테고리의 다른 글
[Python]백준 1008번: 입출력과 사칙연산 단계 - A/B (0) | 2023.04.16 |
---|---|
[Python]백준 10998번: 입출력과 사칙연산 단계 - A×B (0) | 2023.04.16 |
[Python]백준 1001번: 입출력과 사칙연산 단계 - A-B (0) | 2023.04.16 |
[Python]백준 1000번: 입출력과 사칙연산 단계 - A+B (0) | 2023.04.16 |
[Python]백준 2557번: 입출력과 사칙연산 단계 - Hello World (0) | 2023.04.16 |