#include<bits/stdc++.h> using namespace std; int main() { int a,b; double c; cin>>a>>b; c=b*1.0/a*100; cout<<fixed<<setpresition(3)<<c<<"%"; }