1#! /usr/bin/env python2 2# Copyright 2017 Google Inc. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5import sys 6import zlib 7sys.stdout.write(zlib.decompress(sys.stdin.read())) 8 9