#!/usr/bin/perl print "Enter a number\n"; chomp($a=); print "Enter second number\n"; chomp($b=); print "Enter third number\n"; chomp($c=); $big=0; $equal=0; if($a == $b){ $big = $a; $equal = $a; } elsif($a > $b){ $big=$a; } else{ $big = $b; } if($equal == $c){ print "All numbers are same"; } elsif($big < $c){ $big = $c; print "The biggest number is $big \n"; }