#include <iostream> using namespace std; int main() { double h,w; cin >> h >> w; double bmi = w/h/h; if(bmi >= 24) cout << "high" << endl; else if(bmi >= 18.5) cout << "normal" << endl; else cout << "low" << endl; return 0; }
By signing up a 追梦算法网 universal account, you can submit code and join discussions in all online judging services provided by us.
Using your 追梦算法网 universal account