Conditionals
func Greater(a,b){
if(Convert.ToInt(a) > Convert.ToInt(b)){
return a
}
else {
return b
}
}
set a = 5
set c = 4
io.println(Greater(a,c))