We are printing sum of two numbers.
function add(a:number,b:number) { return a+b; } let result = add(10,20); console.warn(result)