Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

#include <iostream>

using namespace std;

int main()
{
int mark=100;
cout<<"Please enter marks."<<endl;
cin>>mark;
if(mark<50){
cout<<"You are failed."<<endl;
cout<<"SORRY!"<<endl;
}
else
{
cout<<"You are PASSED."<<endl;
cout<<"CONGRATULATIONS!"<<endl;
}

return 0;
}

You might also like