5 lines
128 B
AutoHotkey
5 lines
128 B
AutoHotkey
num := 8388607, output := ""
|
|
for i, p in prime_numbers(num)
|
|
output .= p " * "
|
|
MsgBox % num " = " Trim(output, " * ")
|
|
return
|