문제
풀이 (Python)
1 2 3 4 5 6 7 | A, B = map(int, input().split()) print(A + B) print(A - B) print(A * B) print(int(A/B)) print(A%B) | cs |
문제 출처
'프로그래밍 > Baekjoon' 카테고리의 다른 글
(파이썬) 백준 알고리즘 2558번 (0) | 2018.12.02 |
---|---|
(파이썬) 백준 알고리즘 10430번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 1008번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 10998번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 11718번 (0) | 2018.12.02 |