// my first program in C++

#include <iostream>
#include <string>
using namespace std;

#define PI 3.14159
#define NEWLINE '\n'

int main ()
{
  int a, b=3;
  a == b;
  cout << a;
  return 0;
}
