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

read x,y

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