5 lines
92 B
Plaintext
5 lines
92 B
Plaintext
|
from "EMBED" import u64_to_bits;
|
||
|
|
||
|
def main(u64 a) -> bool[64] {
|
||
|
return u64_to_bits(a);
|
||
|
}
|