#include <stdio.h> int main() { int m,y,d; m = 1; y = 2; d = 3; printf(" %d %d %d \n",m, y, d); return 0; }
1 2 3