2771 出生年月日

risnotl / 2024-11-13 / 原文

#include<iostream>
using namespace std;

int main() {
	//输入年、月、日 
	int y,m,d;
	cin>>y>>m>>d;
	
	//按照格式输出 
	cout<<y<<"-"<<m<<"-"<<d;
	 
	return 0;
}