← Back to List

5666번: Hot Dogs ↗

Solutions

C++14
147 B | 147 chars
#include <cstdio>
using namespace std;
double A,B;
int main()
{
    while(scanf("%lf %lf",&A,&B)!=EOF)
    {
        printf("%.2lf\n",A/B);
    }
}