#!/usr/bin/env python3

# You are going to need to import sys
import sys

# Write a program which simply prints out the command line arguments
# Each argument should be printed on one line
# You should only print out the arguments passed in(not the first element of argv)

# Note - there is an example in chapter 6 of the text.  Read chapter 6!