#include<iostream>
using namespace std;
int main()
{
    int money;
    cout<<"How Much money u have\n";
    cin>>money;
    if(money>=1000)/*using semicolon in if statement makes every condition true*/
    
        cout<<"coffee in starbucks\n";
        cout<<"it was good\n";
    
    cout<<"Go home";
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: