#include <stdio.h>

void foo() {
	printf("Wow");
}

int main(void) {
	foo();
	foo(1);
	foo("qwerty");
	return 0;
}
