#include<iostream>
#include<windows.h>
#include<time.h>
using namespace std;
int main ()
{
SYSTEMTIME lpsystime;
GetLocalTime(&lpsystime);
cout<<lpsystime.wYear<<"年"<<lpsystime.wMonth<<"月"<<lpsystime.wDay<<"日 星期"<<lpsystime.wDayOfWeek<<" "<<lpsystime.wHour<<"点"<<lpsystime.wMinute<<"分"<<lpsystime.wSecond<<"秒"<<lpsystime.wMilliseconds<<"毫秒"<<endl;
return 0;
}