본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#12 백준 파이썬 [10430] 나머지

#12 [10430] 나머지

https://www.acmicpc.net/problem/10430



#12 [10430] Solution

a,b,c= map(int, input().split())
print((a+b)%c)
print((a%c + b%c)%c)
print((a*b)%c)
print((a%c * b%c)%c)