Help me in solving VAD3V2 problem

My issue

how write a char

My code

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

int main() {

 int char = "ab";
char a = 23;
char b = 20;
cout << 23+20;
  return 0;
}

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

@kuttymanasa044
U have to do it like this

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

int main() {

  int a = 23;      //Assign the value 23 to a
  int b = 20;      //Assign the value 20 to b
  cout << a + b;   //cout the desired output

  return 0;
}