SELECT
(SELECT SUM(rent) from income) AS total_income,
(SELECT SUM(cost) from expenses) AS total_expenses,
(SELECT SUM(rent) from income) - (SELECT SUM(cost) FROM expenses) AS net_total;