#!/usr/bin/perl $x = 5; $y = 3; $z = $x + $y; print "If x = $x and y = $y, then x + y = $z.\n"; print "\tBye, bye\n\n";