#include <stdio.h> int main() { int c; long int d; scanf("%d %ld",&c,&d); float k=d/(c*1.0); float l=k*100; printf("%.3f%%",l); return 0; }