26 lines
292 B
C
26 lines
292 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
static void p(void)
|
|
{
|
|
uint uwu;
|
|
char buf[76];
|
|
|
|
fflush(stdout);
|
|
gets(buf);
|
|
if ((uwu & 0xb0000000) == 0xb0000000) {
|
|
printf("(%p\n)", uwu);
|
|
exit(1);
|
|
}
|
|
puts(buf);
|
|
strdup(buf);
|
|
return;
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
p();
|
|
return 0;
|
|
}
|