"Source: Text/System/State.text";
"Line: 899";
"Date: Wed Mar 24 09:58:40 2021";
"Main: Thu May 25 10:02:38 2023";
// 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);
