fork download
  1. #!/usr/bin/perl
  2.  
  3. print "Enter weight in pounds: ";
  4. $input = <STDIN>;
  5.  
  6. $kg = $input * 0.454
  7.  
  8. print "$input pounds is equal to $kg kilos! \n"
Runtime error #stdin #stdout 0s 4596KB
stdin
189
stdout
Standard output is empty