Run ID:146098

提交时间:2026-01-25 21:06:02

#include<bits/stdc++.h> using namespace std; int main(){ double a,b; cin>>a>>b; double bz=(a-100)*0.9; if(b>bz*1.1)cout<<"fat"<<endl; else if(b<bz*0.9)cout<<"thin"<<endl; else cout<<"standard"<<endl; return 0; }