输入两个数,输出两个数相除的余数。

#include<bits/stdc++.h>
using namespace std;
long long x,y; 
int main(){
	cin>>x>>y;
	cout<<x%y<<endl;
	return 0;
}