import java.util.Scanner;
public class week
{
public static void main(String[] args)
{
Scanner in=new Scanner(System.in);
int week=in.nextInt();
switch(week)
{
case 1:
System.out.println("今天是星期一");
System.out.println("有四节机房课");
break;
case 2:
System.out.println("今天是星期二");
System.out.println("有四节机房课");
break;
case 3:
System.out.println("今天是星期三");
System.out.println("有四节机房课");
break;
case 4:
System.out.println("今天是星期四");
System.out.println("有两节机房课");
break;
case 5: