Run ID:126800

提交时间:2025-07-21 17:11:37

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