7 lines
90 B
C++
7 lines
90 B
C++
#include <cassert>
|
|
|
|
int main(int argc, char *[]) {
|
|
assert(argc == 2);
|
|
return 0;
|
|
}
|