#include<istream>
using namespace std;
int main(){
    
   int y,m,d;
    
    cout<<"Enter the Year:";
    cin>>"y";
    cout<<"Enter the Month:";
    cin>>"m";
    cout<<"Enter the Date:";
    cin>>"d";
    
    Cout<< "y"-"m"-"d";
   
}