Write a program that inputs two numbers and finds if second numbers is square of first.
#include<iostream>
using namespace std;
int main()
{
int a,b;
cout<<"\t Square Checker "<<endl;
cout<<"\n";
cout<<"Enter the First Number"<<endl;
cin>>a;
cout<<"Enter the Second Number"<<endl;
cin>>b;
if (a*a==b)
{
cout<<"Senond Number is Square of First Number"<<endl;
}
else
{
cout<<"Senond Number is not square of First Number"<<endl;
}
}