#include <stdio.h> int main() { int c=0; int d=0; double e=0.0; scanf("%d%d",&c,&d); e=((d*1.0)/c)*100; printf("%.3lf%%",e); return 0; }