I want to write a program
Around the square are the same numbers that come together
# include <iostream>
using namespace std;
int main(){
cout<<"Enter number:";
double num;
cin>>num;
cout<<static_cast<int>(num*num)<<endl;
//couts int value - Arounds the square
system("PAUSE");
return 0;
}