В С++, пожалуйста помогите
#include
using namespace std;
int main() {
bool a = true;
int b;
if (a)
{
b = 4;
}
else
b = -4;
cout << b;</p>
return 0;