출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

 

이것도 전의 10869번 문제와 비슷한 방식으로 사용하면 된다. 코드는 다음과 같이 짰다:

 

import sys

A, B, C = map(int, sys.stdin.readline().split())

print((A+B)%C, ((A%C) + (B%C))%C, (A*B)%C, (((A%C)*(B%C))%C), sep='\n')