Run ID:126789
提交时间:2025-07-21 16:58:03
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; cin >> a >> b; int c = (a - 100) * 0.9; if (b >= c * 1.1) { cout << "fat"; } else if (b <= c * 0.9) { cout << "thin"; } else { cout << "standard"; } return 0; }