#include<iostream>
using namespace std;
int main(){
    
   int YYYY,MM,DD;
    
    cout<<"Enter the Year:";
    cin>>"YYYY";
    cout<<"Enter the Month:";
    cin>>"MM";
    cout<<"Enter the Date:";
    cin>>"DD";
    
    Cout<< "YYYY"-"MM"-"DD";
   
}