#include <iostream>
#include <cstdio>
#include <cstdlib>
usingnamespace std;
int main()
{
int numberOne;
cout << "enter first number";
cin >> numberOne;
int numberTwo;
cout << "enter second number";
cin >> numberTwo;
if (numberOne > numberTwo)
{
cout << "first number is greater than number two"
<< endl;
}
else
{
cout << "number one is not greater than number two"
<< endl;
}
}
return 0;
ive tried this over and over to try to figre out what is missing?
error expected unqualified-id before 'return'