#include<iostream>
using namespace std ;
int main{
string a ,b;
int c , d ;
cin>>a>>c>>d>>b;
if(c<0 || c>100 || d<1 || d>10000 ||a.length()<0 ||b.length()<0 ||b.length()>100){
    cout<<"Invalid input";
}
else {
    cout<<"Name: "<<a<<endl;
    cout<<"Age: "<<c<<endl;
    cout<<"Employee ID: "<<d<<endl;
    cout<<"Department: "<<b<<endl;
    
}
}