This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
//输入用例 :73.263 0.9973
//预期输出结果:0.4601
double a, b, r;
int k;
cin >> a >> b;
k = (int)(a/b);
r = a - k * b;
cout << r << endl;
return 0;
}