#include <iostream>
using namespace std;
int main()
{
  void a = 10, b = 10;
  int c;
  c = a + b;
  cout << c;
  return 0;
}