7 lines
76 B
C++
7 lines
76 B
C++
|
#include <iostream>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("good\n");
|
||
|
return 1;
|
||
|
}
|