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