/**
* Add two numbers together
*/
function add(int a, int b) int {
return a + b;
}
function main() {
print(add(1, 1) as str);