#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""
引数を表示するスクリプト
"""
import sys
for arg in sys.argv :
    print(arg)
#EOF