R(a,b,c){ if(a>b){ if(a>c){ print a; } } else if(b>c){ print b; } else{print c;} } main(){ R(4,6,2); }