#include <iostream> using namespace std; int main() { bool isRaining = false; bool hasTicket = true; cout << "Raining: " << isRaining << endl; // 0 cout << "Has ticket: " << hasTicket; // 1 return 0; }
Click Run to execute this code.