aboutsummaryrefslogtreecommitdiff
path: root/challenge-002/samir-parikh/perl/ch-1.pl
blob: 964510a7cbf2333c71b801e2f265dee52e1a38c8 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/local/bin/perl

use warnings;
use strict;

chomp(my $number = <STDIN>);

$number =~ s/\A0+//g;

print "$number\n";