I am a student and starting to learn C++. Here is the question: The program accepts two positive integers from the input. Output every integer from the first number up to and including the second number. However, you have to precede every integer with the character 1.
Here is code
#include<iostream>
using namespace std;
using std::cin;
using std::cout;
int main()
{
int first, second;
cin>>first>>second;