#55534: C++解法


yp11550392@yphs.tp.edu.tw (ZEROJUDGE)


#include <iostream>
#include <iomanip>
using namespace std;
int main() {
    int weight;
    double height;
    
    cin >> weight >> height;
    cout<<fixed<<setprecision(1)<<weight/(height*height);

    return 0;
}

//嚴禁抄襲!