mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
8 lines
97 B
C++
8 lines
97 B
C++
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
char tmp;
|
||
|
|
fread(&tmp, sizeof(tmp), 1, stdin);
|
||
|
|
return 0;
|
||
|
|
}
|