#include <iostream> int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); printf("我出生在%d年%d月%d日",a,b,c); return 0; }