Online Rhino JS Compiler
										
										
var x = 20;
var y = 30;
var z = x + y;

print('Sum of ',x,' and ',y,' is ',z);
                                
                                

Output Results

										
Sum of  20  and  30  is  50