#include <stdio.h>

int main() {
    float n1, n2;
    scanf("%f", &n1);
    scanf("%f", &n2);
    printf("%.2f", n1/n2);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: