Note
[백준] 5. 사칙연산 본문
728x90
문제
두 자연수 A와 B가 주어진다.
이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오.
a,b = input().split()
print(int(a)+int(b))
print(int(a)-int(b))
print(int(a)*int(b))
print(int(int(a)/int(b)))
print(int(a)%int(b))
입력값 : 7 3
출력값 : 10 4 21 2 1
'etc > Coding Test' 카테고리의 다른 글
[백준] 7. 곱셈 (0) | 2021.09.22 |
---|---|
[백준] 6. 나머지 (0) | 2021.09.21 |
[백준] 4. a+b (0) | 2021.09.19 |
[백준] 3. 고양이 (0) | 2021.09.18 |
[백준] 2. We love kriii (0) | 2021.09.17 |
Comments