5 lines
79 B
C++
5 lines
79 B
C++
int main(int argc, char* argv[]) {
|
|
if (argc != 1) return -1;
|
|
|
|
return 42;
|
|
}
|