Help me in solving PYTH02 problem

My issue

My code

#include <bits/stdc++.h>
using namespace std;
int main() {
  
  cout << 12 ;
  
  return 0;
}

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

@korlasoumya23
You are using C++ code instead of Python. In this learning module, you will need to use Python to solve problems.

print(12)

The above code should work for the problem.