Run ID:467
提交时间:2022-08-21 10:57:47
#include<iostream> using namespace std; int main() { int l,h; cin>>l>>h; if(h>(l-100)*0.9*1.1) { cout<<"fat"<<endl; } else if(h>(l-100)*0.9*0.9) { cout<<"standard"<<endl; } else { cout<<"thin"<<endl; } return 0; }