C++16

PHOTO EMBED

Sat Sep 17 2022 06:37:34 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <iostream>
using namespace std;
int main()
{
  int p;
  bool a = true;
  bool b = false;
  int x = 10;
  int y = 5;
  p = ((x | y) + (a + b));
  cout << p << endl;
  return 0;
}
content_copyCOPY