Help me in solving SYNMCQ12 problem

My issue

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

@janakipawar
In the following code;

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

int main() {
  int a = 10 ;
  int b = 3 ;
  cout << "a / b";
  
  return 0;
}

Anything enclosed within double quotes, " ", will be printed as is, like a string.

In the code above, the program will output; (** a / b**), as it is enclosed within double quotes, and will not print the calculated value.