Write a program that input two numbers and find if second number is square of firs number

1 answer

read x,y
if y == x*x then {
yes
} else {
no
}