My issue
My code
// Debug the following code to solve the problem
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
char N;
cin>>N;
cout<<2*N+1/2*N-1<<endl;
N++;
}
return 0;
}
Learning course: C++ for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone

