Create 1362.c

pull/15/head
KiritoTRw 2016-05-22 23:45:15 +08:00
parent e8eca9546f
commit e2d0994387
1 changed files with 8 additions and 0 deletions

8
QUSTOJ/1362.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d\n",a%b);
return 0;
}