2009-04-04 13:17:12來源不明

上學去吧!

/***************************************************************/

#include<stdlib.h>
#include<stdio.h> 
main()  
{  
 int a,b;  
 while(scanf("%d %d",&a,&b)!=EOF)  
{  
  if(a>=8&&a<=16) printf("At School");  
  else if(a==7&&b>=30) printf("At School");  
  else printf("Off School");  
    }  
 return 0;  
}