<?php
/**
* Task 1: Decode secret word
*
* $data variable (defined below) is an array of digits, that represents binary data. Every element of array
* is a single-byte char code.
*
* The task is to decompress gzipped binary data, then to decode the result as base 64 encoded string and
* to print to output the result string - this is a secret word.
*
*/
echo "123" == 0123;
// write your code here...