today = new Date();
Y = today.getFullYear();
M = today.getMonth() + 1;
D = today.getDate();
document.write("今日は",Y,"年",M,"月",D,"日です");

