#C2277. Perfect Square Checker

    ID: 45575 Type: Default 1000ms 256MiB

Perfect Square Checker

Perfect Square Checker

Given an integer n, determine whether it is a perfect square. An integer n is a perfect square if there exists an integer x such that $$x^2 = n$$. Note that if n is negative, it should be considered as not a perfect square.

inputFormat

The input consists of a single integer n provided via standard input.

outputFormat

Output "True" if n is a perfect square; otherwise, output "False". The result should be printed to standard output.

## sample
4
True

</p>