#include <stdio.h>
int main(void)
{
int A, B, C = 0;
scanf("%d %d %d", &A, &B, &C);
if (A>=2 and B>=2 and C>=2)
{
if (A<=10000 and B<= 10000 and C<= 10000)
{
printf("%d\n", (A+B)%C);
printf("%d\n", ((A%C) + (B%C))%C);
printf("%d\n", (A*B)%C);
printf("%d\n", ((A%C)*(B%C))%C);
}
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 10757번 큰 수 A+B (파이썬) (0) | 2022.06.17 |
---|---|
[백준] 10718번 We love kriii (C++) (0) | 2022.06.17 |
[백준] 10172번 개 (C++) (0) | 2022.06.16 |
[백준] 10171번 고양이 (C++) (0) | 2022.06.16 |
[백준] 9663번 N-Queen (파이썬) (0) | 2022.06.16 |