0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 17:00:08 +00:00

18 lines
366 B
C++
Raw Normal View History

2020-10-09 20:59:36 +08:00
// R39590203
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c, d, f, e, g, h, i;
cin >> a >> b >> c >> d >> e >> f >> g >> h >> i;
if ((h && 50 + a + b + c + d + e + f + g + 5 >= i) || (50 + a + b + c + d + e + f + g >= i)) {
cout << "AKIOI" << endl;
}
else {
cout << "AFO" << endl;
}
return 0;
}