mirror of
https://github.com/vbatts/bitorchestra.git
synced 2024-11-27 02:55:41 +00:00
12 lines
198 B
C
12 lines
198 B
C
main(t){
|
|
int y,x;
|
|
for(t=0;;t++)
|
|
{
|
|
x=t*"6689"[t>>16&3]/24&127;
|
|
y=t&16383;
|
|
if (y==0 || x==0)
|
|
continue;
|
|
|
|
putchar((30000000000/(y)&1)*35+(x)*y/400000000+((t>>8^t>>10|1>>14|x)&63));
|
|
}
|
|
}
|