#include <iostream>
using namespace std;

int main() {
	int c, d;
	scanf("%d %d", &c, &d);
	printf("%.3f%%", 100.0 * (float)d / c);
}