Run ID:126784

提交时间:2025-07-21 16:54:29

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