C++17

PHOTO EMBED

Sat Sep 17 2022 06:55:03 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <iostream>
using namespace std;
int main()
{
  unsigned int x = 1;
  int y = -2;

  if(x > y) 
  {
    cout << "x is greater";
  }
  else 
  {
    cout << "y is greater";
  }      
}
content_copyCOPY