2771 出生年月日
#include<iostream>
using namespace std;
int main() {
//输入年、月、日
int y,m,d;
cin>>y>>m>>d;
//按照格式输出
cout<<y<<"-"<<m<<"-"<<d;
return 0;
}
#include<iostream>
using namespace std;
int main() {
//输入年、月、日
int y,m,d;
cin>>y>>m>>d;
//按照格式输出
cout<<y<<"-"<<m<<"-"<<d;
return 0;
}