maximum(x,y) { // This will compare 2 numbers if (x > y) {print "x";} else {print "y";} } Main(){ var a,b; maximum(a,b); }