#include <iostream>
int main()
{
using namespace std;
int mynumber, myothernumber;
cout << "What number do you want to make squared?" << endl;
cin >> mynumber;
cout << "Really dude? That number? your brain too small to make it squared yourself? Fine than... press any key to see your answer if you still havent figured it out. ";
mynumber = mynumber * mynumber;
system("pause");
cout << mynumber << endl;
system("pause");
return 0;
}
int main()
{
using namespace std;
int num, num2;
cout << "Enter the number you want to square: ";
cin >> num;
cout << "Really? O.o you dont have the brain to square it yourself? fine than... press any key to see the answer." << endl;
system("pause");
num2 = num * num;
cout << " Here you go you lazy monkey: ";
cout << num;
cout << "*";
cout << num;
cout << "= ";
cout << num2 << endl;
system("pause");
return 0;
}

#include <iostream>
using namespace std;
int main()
{
cout<<"lol\n";
cin.get();
}