#include <iostream> #include <cstdio> using namespace std; int main(){ int a,b; float c; cin>>a>>b; c=b/a*100; printf("%.3f%",c); return 0; }