OJ-Problems-Source/QUSTOJ/1362.c

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;
}