#include #include int main(char argc, char *argv[]) { for (int i = 1; i < argc; i++) { printf("%s\n", argv[i]); } return 0; }