C++
#include <iostream>
using namespace std;
int main()
{
bool a = true;
int b = 0;
if (a) b = 4;
else b = -4;
cout << b;
return 0;
}
C++
#include <iostream>
using namespace std;
int main()
{
bool a = true;
int b = 0;
if (a) b = 4;
else b = -4;
cout << b;
return 0;
}