I am writing a program that uses if statements. The program will prompt the user to enter 2 numbers 0-100. If Num1 is > Num2 it needs to output "Num1 is greater than Num2. Num1 is the greater variable." If Num1 < Num2 "Num2 is greater than Num1. Num2 is the greater variable." my question is this

how to i get the program to print the numbers the user inputs and not Num1 and Num2. here is the source any feedback is greatly appreaciated. It always seems to be the simple stuff that confuses me.

#include <iostream>

using namespace std;

int main()

{
int Num1;
int Num2;

cout << "Please enter a number 0-100 ";
cin >> Num1;
cout << endl;
cout << "Please enter a number between 0-100 ";
cin >> Num2;
cout << endl;
if (Num1 > Num2)
cout << "Num1 is greater than Num2. Your first variable was greater" << endl;
else (Num1 < Num2);
cout << "Num2 is greater that Num1. Your second variable is greater" << endl;
return 0;

}