#include <stdio.h> int main() { int n; scanf("%d",&n); printf("year=%d\nmonth=%.2d\ndate=%.2d\n",n/10000,(n%10000)/100,(n%10000)%100); return 0; }