Write a program to calculate and print the area of a square with given height and width .
#include<iostream>
using namespace std;
int main()
{
int a,h,w;
cout<<"\t * Area of Square * "<<endl;
cout<<"\n";
cout<<"Enter the Height of Square "<<endl;
cin>>h;
cout<<"Enter the Width of Square "<<endl;
cin>>w;
a=w*h;
cout<<"Area of Square is "<<a<<endl;
}