Result Size: 625 x 571
x
 
#include <iostream>
using namespace std;
int main() {
  int x = 20;
  int y = 18;
  if (x > y) {
    cout << "x is greater than y";
  }  
  return 0;
}
x is greater than y