2025-03-03 19:11:28 +08:00

7 lines
112 B
C

#include <stdio.h>
int main() {
int a, b;
scanf("%d %d", &a, &b);
printf("%.2f\n", (float)a / b);
}