Run ID:132514

提交时间:2025-10-08 19:03:11

#include<iostream> using namespace std; int main(){ double 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; }