#6393: 一直NA 請幫我找找 感謝


jack276017 (Moonslight)


#include <iostream>
using namespace std;
int main()
{
    int h , m ;
    while (cin >> h >> m)
    {if (450 < h*60+m && 1020 > h*60+m )
    cout << "At School" << endl;
    else
    cout << "Off School" << endl;
    }
    return 0;
}