#include<stdio.h>
int main()
{
int age;
printf("welcome to ARTO.\nplease enter your age");
scanf("%d",age);
printf("your age is,%d",age);
return 0;
}