"Source: Text/System/State.text";
"Line: 899";
"Date: Thu Sep 25 21:32:21 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/State.text, line: 899
// Example: H1E10 ()
print "Example: H1E10";
ei := GetEchoInput();
SetEchoInput(true);
m := Random(2, 10000);
if IsPrime(m) then
    m, "is prime";
else
    Factorization(m);
end if;
SetEchoInput(ei);
