OJ-Problems-Source/QUSTOJ/1362.c
2016-05-22 23:45:15 +08:00

9 lines
111 B
C

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