mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
15 lines
244 B
C++
15 lines
244 B
C++
|
#include<stdio.h>
|
||
|
int main()
|
||
|
{
|
||
|
int n,a,b,c,d,sum;
|
||
|
scanf("%d",&n);
|
||
|
while(n--)
|
||
|
{
|
||
|
scanf("%d%d",&a,&b);
|
||
|
c=a%100;
|
||
|
d=b%100;
|
||
|
sum=((c+d)%100);
|
||
|
printf("%d\n",sum);
|
||
|
}
|
||
|
}
|