module top;
function f;
input integer z;
input integer a;
begin
$display(z, a);
f = z + a;
end
endfunction
task t;
endtask
initial begin
$display(f(7, 3));
t(9, 5);
endmodule