#!/usr/bin/env python3
# The identity converter
# © Reuben Thomas 2023

import sys


sys.stdout.buffer.write(open(sys.argv[1], "rb").read())
