mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 12:18:48 +00:00
18 lines
366 B
C++
18 lines
366 B
C++
// 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;
|
|
}
|