#include<stdio.h>
int main()
{
int n;
scanf("%d",&n);
if(n==1)
printf("You were studying Higher mathematics!");
if(n==2)
printf("You were studying Linear algebra!");
if(n==3)
printf("You were studying Principle of computer composition!");
if(n==4)
printf(" You were studying Database system concept!");
if(n==5||n==6||n==7)
printf("You were playing games!");
return 0;
}