#include #include int main(int argc, char *argv[]) { printf("%d mot%s.\n", argc, (argc > 1) ? "s" : ""); return EXIT_SUCCESS; }