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