Help me in solving SYNMCQ23 problem

My issue

include <bits/stdc++.h>
using namespace std;

int main() {

int a, b;
cin >> a >> b;
int c = a + 2;
int d = c + b;
cout << d;

return 0;
}

Learning course: Learn C++
Problem Link: CodeChef: Practical coding for everyone