#include <stdio.h> int main() { double c = 0.0, d = 0.0;//确诊人数,死亡人数 scanf("%lf %lf", &c, &d); printf("%.3f%%", d/c*100); return 0; }