0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-24 00:48:47 +00:00

P6850 NOI

R39590203
This commit is contained in:
Baoshuo Ren 2020-10-09 20:59:36 +08:00 committed by Baoshuo Ren
parent dae34e06c0
commit 5fda59af39
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

17
problem/P6850/P6850.cpp Normal file
View File

@ -0,0 +1,17 @@
// 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;
}