#include <iostream>
using namespace std;

int main() {
  int a = 1;
  int b = 5;
  cout << a + b;
  return 0;
}