const stuName = "zust-myy";
const school = "ZUST";
const age = 20;
const alive: Function =
(name: string, school: string, age: number): string =>
{
return `My name is ${name}, I am ${age} years old, I am studying in ${school}`;
};
console.log(alive(stuName, school, age));