#include <iostream>
using namespace std;
 
int main()
{
	int age;
	cout<<"enter your age";
	cin>>age;
	cout<<"your age is "<<age<<"\n";
	return 0;
}