Run ID:96951

提交时间:2024-11-09 22:23:19

#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b; cin>>a>>b; if((a-100)*0.9==b){ cout<<"standard"; } else if((a-100)*0.9>b){ cout<<"thin"; } else if((a-100)*0.9<b){ cout<<"fat"; } return 0; }