c++ to python converter online
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
double x = 0;
cout << "x = ";
cin >> x;
// ΠΠΎΠ³ΠΈΡΠ΅ΡΠΊΠΎΠ΅ Π²ΡΡΠ°ΠΆΠ΅Π½ΠΈΠ΅.
cout << "x*x < 2 == " << (x*x < 2) << endl;
return EXIT_SUCCESS;
}