Write a program that accepts an upper limit from the user and it should display the following series up-to the upper limit specified in a n variable. 1 2 3 0 5 6 7 0 9……………..n

#include<iostream>
using namespace std;
int main()
{
int upper_Limit=0,i;
cout<<“Enter the upper Limit: “;
cin>>upper_Limit;
int multiple=1;
for(i=1;i<=upper_Limit;i++)
{
if(i%4==0)
{
cout<<0<<“\t”;
}
else
cout<<i<<“\t”;

}
}