mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 21:58:49 +00:00
22 lines
363 B
C++
22 lines
363 B
C++
#include <iostream>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
int v, a, b, c;
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
cin >> v >> a >> b >> c;
|
|
v %= a + b + c;
|
|
if (v < a) {
|
|
cout << "F" << endl;
|
|
} else if (v < a + b) {
|
|
cout << "M" << endl;
|
|
} else {
|
|
cout << "T" << endl;
|
|
}
|
|
return 0;
|
|
}
|