13 lines
201 B
C
13 lines
201 B
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
assert(argc == 2);
|
|
|
|
long i = strtol(argv[1], NULL, 10);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|