#include <iostream> #include <iomanip> using namespace std; int main() { int c, d; cin >> c >> d; cout << fixed << setprecision(3) << (float)d / c * 100 << "%" << endl; }