import std.stdio;

voidmain(){
 int year;
 int month;
 int day;

 readf("%s.%s.%s",&year,&month,&day);

 writeln("Month: ", month);
}