

import java.util.Calendar;

public class ShowDate {
	
	public static void main(String[] argv) {
		Calendar today = Calendar.getInstance();
		int day = today.get(Calendar.DAY_OF_MONTH);
		int month = today.get(Calendar.MONTH);
		System.out.println("Today is day " + day + " of month " +
				month);
	}
}
