2020-03-02 02:52:41 +04:00

9 lines
94 B
Plaintext

_ g(s) {
var (z, t) = (17, s);
while (z > 0) {
t = s;
z -= 1;
}
return ~ t;
}