#include<stdio.h>
int main()
{
int a,b,rem;
printf("Enter any two numbers");
scanf("%d%d",&a,&b);
rem=a%b;
printf("Reminder is %d",rem);
return 0;
}