注意:
是 體重(kg) / (身高(m) 的平方)
不是 (體重(kg) / 身高(m)) 的平方
// 4'56"
#include <bits/stdc++.h>
using namespace std;
int main()
{
double w, h;
cin >> w >> h;
double per = w / pow(h, 2);
cout << fixed << setprecision(1) << per << endl;
if(per > 25) cout << "PANG";
else cout << "Hai Xing";
}