# Instructions
You will be given a random sentence from stdin. Your task is to convert the sentence into leetspeek. Print the answer to stdout.
Here is your leetspeek chart:
a -> 4
b -> 8
e -> 3
g -> 6
i -> 1
o -> 0
s -> 5

Example 1:
INPUT: The quick brown fox jumps over the lazy dog.
OUTPUT: Th3 qu1ck 8r0wn f0x jump5 0v3r th3 l4zy d06.

Example 2:
INPUT: THE QUICK 123 BROWN FOX JUMPS 456 OVER THE LAZY 789 DOG 0 ?!
OUTPUT: TH3 QU1CK 123 8R0WN F0X JUMP5 456 0V3R TH3 L4ZY 789 D06 0 ?!

Your program must not exceed 107 characters in length, spaces and newlines included.
Imports are restricted. You may only read and write from stdin and stdout respectively. Don't try anything!

Supported languages are Bash (bash), JavaScript (js), Lua (lua), Perl (perl), PHP (php), Python 3 (python3), and Ruby (ruby).
The first line of the program must be one of the parenthesized options. The rest of your code shall be followed by a newline. The first line is discarded before being run.

Example 1:
python3
for i in input():
	print(i, '\n')

Example 2:
perl
my $input = <STDIN>;
foreach ($input) {
	print("$_", "\n");
}

Pipe your program with cat myprogram.x | nc 35.204.108.170 50001
Good luck!
