0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:05:24 +00:00
OI-codes/Luogu/problem/P6850/P6850.cpp

18 lines
366 B
C++
Raw Normal View History

2020-10-09 12:59:36 +00: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;
}