提交时间:2024-05-05 09:15:34

运行 ID: 39677

#include<bits/stdc++.h> using namespace std; double a,b; int main(){ cin>>a>>b; b/=100; if(a/(b*b)<18.5)cout<<"thin"; else if(a/(b*b)>=18.5&&a/(b*b)<=24)cout<<"great"; else cout<<"fat"; }