The actual code for the issue being solved
#include<bits/stdc++.h>
using namespace std;
int main()
{
int num1, num2;
cout << "Enter two numbers\n";
cin >> num1 >> num2;
cout << num1 + num2;
return 0
}A commented out example of the above code
/*
Enter two numbers
1 5
*/Commented out output of the above example
/*
6
*/