#include<iostream>
using namespace std;
int main()
{
int money,partner_age;
cout<<"Enter the Amount u have"<<endl;
cin>>money;
if(money>=1000)
{
cout<<"ENter the Age OF ur partner"<<endl;
cin>>partner_age;
if(partner_age>=18)
{
cout<<"GO Get some Wine"<<endl;
}
else
{
cout<<"GO and buy Appy Fizz buddy!"<<endl;
}
}
else
{
if (money>500)
{
cout<<"Go and Buy a coffee for urself"<<endl;
}
else
{
cout<<"Buy Tea"<<endl;
}
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: