let monthlyPrize = 5000;
let prize = 10000;
let coursesIncome = 15000;
let montlyIncome = monthlyPrize + coursesIncome; // 5000 + 15000 Aylık kazancı toplamı tek değişken altında toplandı.
let annualIncome = montlyIncome * 12 + prize; // Aylık kazanç * 12 + ikramiye toplamı yıllık gelir.
console.log(annualIncome);