<?php

function add($a, $b)
{
    return $a + $b;
}

echo add(5, []) . PHP_EOL;
