#include<iostream>
using namespace std;
int main()
{
int a;
cout<<" Enter the value of a = " ;
cin>>a;
if(a<10)
{
cout<<" Welcome in C++ World" ;
}
else
{
cout<<" Bye Bye"<<endl;
}
cin.get();
return 0;
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)