#include <stdio.h>

int main() {
    int a, b;
    scanf("%d %d", &a, &b);
    printf("%.3lf%%", b * 100.0 / a);  // 简化表达式
    return 0;
}