What will the following program display?
#include using namespace std; int main() { int a = 0, b = 2, x = 4, y = 0;
a.cout << (a == b) << " ";
b.cout << (a != b) << " ";
c.cout << (b <=x) << " ";
d,cout << (y > a) << endl; return 0; }