import core.int128 : Cent, and, or, shl, tst, xor; import core.stdc.stdio : getchar, printf; extern(C) void main() { slide: for (auto q = cast(Cent) 0u, i = 1u; tst(xor(and(q, cast(Cent) 0xff), cast(Cent) '\n')); ++i) { q = or(shl(q, 8u), cast(Cent) getchar()); if (i < 14) continue; auto p = cast(ubyte*) &q; for (auto s = 0u, j = 0u; j < 14u; ++j) { auto b = 1u << (p[j] & 0x1fu); if (s & b) continue slide; s |= b; } printf("%d\n", i); break; } }