13 lines
109 B
C++
13 lines
109 B
C++
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int test() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
|
||
|
cout << test();
|
||
|
}
|