notalentprogrammer f00b19f981 20250506 baekjoon
2025-05-06 22:00:09 +09:00

2 lines
89 B
Python
Executable File

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