Print All Arguments

Description: Write a bash script that prints all the arguments provided to it.

Example Output:

$ ./print_args.sh Hello World 123
Hello
World
123

$ ./print_args.sh This is a test
This
is
a
test