mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 22:39:36 +00:00
9 lines
97 B
C++
9 lines
97 B
C++
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
char tmp;
|
|
fread(&tmp, sizeof(tmp), 1, stdin);
|
|
return 0;
|
|
}
|