보안을 그리다, 훈이

[Baekjoon/Python3] 10430번 나머지 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10430번 나머지

HooNeee 2020. 12. 6. 03:30

[Baekjoon/Python3] 10430번 나머지

 

www.acmicpc.net/problem/10430

 

10430번: 나머지

첫째 줄에 A, B, C가 순서대로 주어진다. (2 ≤ A, B, C ≤ 10000)

www.acmicpc.net

 

A, B, C = input().split()
A = int(A)
B = int(B)
C = int(C)

print((A + B) % C)
print(((A % C) + (B % C)) % C)
print((A*B)%C)
print(((A % C) * (B % C)) % C)
Comments