My issue
My code
//Step 1: Read and understand the problem statement and sample test cases
// Click on 'Next' once you are ready to proceed.
#include<iostream>
using namespace std;
int main()
{
int a, c;
cin>>a>>c;
int b=(a+c)/2;
cout<<b;
}
Learning course: C++ for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone