1#!/bin/perl 2 3$a = 113549; 4 5while ($a >= 128) { 6 $x = $a % 128; 7 $a /= 128; 8 print "$x\n"; 9} 10 11