You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
255 B

2 years ago
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>73.263 0.9973
//Ԥ<><D4A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0.4601
double a, b, r;
int k;
cin >> a >> b;
k = (int)(a/b);
r = a - k * b;
cout << r << endl;
return 0;
}