import ballerina/io; function multiply(int a, int b) returns int { return a * b; } public function main() { io:println(multiply(4, 5)); }