Run ID:132506
提交时间:2025-10-08 18:52:09
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b-100*0.9*1.1){ cout<<"fat"<<endl; }else if(a<b-100*0.9*0.9){ cout<<"thin"<<endl; }else{ cout<<"standard"<<endl; } return 0; }