#include #include using namespace std; const int N = 1e6 + 50; char buf[N]; int main() { fread(buf, 1, N, stdin); puts(strstr(buf, "ACM") ? "Fun!" : "boring..."); return 0; }