Write the missing statements for the following program.
#include <iostream>
using namespace std;
int main(void)
{
int Num1;
cout << “Enter 2 numbers: “;
cin >> Num2;
if (Num1 < Num2)
cout << “Smallest number is ” <<Num1;
else
cout << “Smallest number is ” <<Num2;
return 0;
}
Expert Answer
Answer to Write the missing statements for the following program. #include using namespace std; int main(void) { int Num1; cout > …