8 lines
107 B
C
8 lines
107 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
int32_t meow(int32_t x) {
|
|
printf("%d\n", x);
|
|
return 500;
|
|
}
|