Run ID:27654
提交时间:2022-06-07 18:01:37
#include<iostream> using namespace std; int main(){ int n,m; double t; cin>>n>>m; t = (n-100.0)*0.9; if(m > t*1.1) { cout << "fat"<<endl; } else if(m < t*0.9) { cout << "thin"<<endl; } else cout << "standard"<<endl; return 0; }