Online Perl Compiler
										
										
$x = 20;
$y = 35;
$z = $x+$y;

print "Sum of $x + $y = $z";
                                
                                

Output Results

										
Sum of 20 + 35 = 55