#include <stdio.h>

int main() {
    printf("Hello world!\n");
    return 0;
}


#if 0 /* Sample code 8/
class Pair{
  public:
    int first, second;
    Pair(int x, int y){
      first = x;
      second = y; 
    }
};

vector<Pair> merge_intervals(vector<Pair>& v){
  vector<Pair> result;
  // write your code here
  return result; 
}
#endif

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: