1. function sum(a: number, b: number) {
    2. return a + b;
    3. }
    4. console.log(sum(4, 3));