14 lines
174 B
Text
14 lines
174 B
Text
import extensions;
|
|
import system'math;
|
|
|
|
public Program()
|
|
{
|
|
var n := 1;
|
|
|
|
until(n.sqr().mod(1000000) == 269696)
|
|
{
|
|
n += 1
|
|
};
|
|
|
|
Console.printLine(n)
|
|
}
|