0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 11:25:24 +00:00
OI-codes/AtCoder/ABC243/A/A.cpp

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;
}