Written by Anonymous

#include <bits/stdc++.h>
using namespace std;

int a=1, b=2, c=3, d=4;

int main()
{
  if(a>b){
    if(c>d)
      cout<<"1\n";
    else
      cout<<"2\n";
  }
  else{
    if(c<d)
      cout<<"3\n";
    else
      cout<<"4\n";
  }

  cout<<"5\n";
}
Notepad
Select All