8 lines
125 B
Text
8 lines
125 B
Text
happy := [];
|
|
n := 1;
|
|
until #happy = 8 loop
|
|
if is_happy(n) then happy with:= n; end if;
|
|
n +:= 1;
|
|
end loop;
|
|
|
|
print(happy);
|