#include <bits/stdc++.h> using namespace std; int main() { double c,d; cin>>c>>d; cout<<fixed<<setprecision(3)<<d/c*100; cout<<'%'; return 0; }