12345678
#!/usr/bin/perluse strict;use warnings;my (@time_array) = (localtime(time))[2,1];print join(":", @time_array);