Quick actions

cmd+k|ctrl+k

Navigation

Languages

lscpp1

Snippet info

Language

Cpp

Visibility

public

Author

zvat.333333

Created

2022-03-05T13:11:52.403644Z

Updated

2022-03-05T13:12:02.894729Z

#include <iostream>
using namespace std;

int main() {
  cout << "Hello World!" << endl;
  cout << "Peace" << endl; 
  cout << "I'll be back" << endl;
  cout << "London is capital of GB" << endl; 
  cout << "Ukraine is the best country" << endl;
  cout << "5 + 5  = " << 5+5 <<endl;
  cout << "5 - 6 = " << 5-6 << endl; 
  cout << "5 * 5 = " << 5*5 << endl;
  cout << "25 / 5 = " << 25/5 << endl;
  cout << 24 + 6 * (9 *11) << endl; 
  cout << 9/10 + 9.12;
}
INFO