#include <iostream>
using namespace std;

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