#!/usr/bin/env python

import sys

sys.stdout.write('this is stdout.\n')
sys.stderr.write('this is stderr.\n')
sys.exit(int(sys.argv[1]))
