#include <bits/stdc++.h> using namespace std; int main() { int hh, mm; cin>>hh>>mm; int totalMinutes=hh*60+mm; int startTime=7*60+30; int endTime=17*60; if (totalMinutes>=startTime&&totalMinutes<endTime){ cout<<"At School"; } else { cout<<"Off School"; } return 0; }