#include<iostream>
using namespace std;
void Func(string fname, int age)
{
    cout<<fname<<" IT. "<<age<<" years old. \n";
}
int main()
{
    Func("Arun", 19);
    Func("Aswin", 18);
    Func("Kanish", 17);
    return 0;
}
