A c++ program
#include"iostream"
using namespace std;
int main()
{
char flag;
cout<<"Do you want to marry me ? (Y/N) :"<<endl;
cin>>flag;
if(flag=='Y')
cout<<"Me too ! "<<endl;
else
cout<<"Wish you a happy life ... "<<endl;
return 0;
}//This program can be used to propose.
using namespace std;
int main()
{
char flag;
cout<<"Do you want to marry me ? (Y/N) :"<<endl;
cin>>flag;
if(flag=='Y')
cout<<"Me too ! "<<endl;
else
cout<<"Wish you a happy life ... "<<endl;
return 0;
}//This program can be used to propose.