下面程序的输出结果为?( )
int main(){
bool a = 6>5, b = 3>7;
cout << (a || b) << " " << (a && b) << endl;
return 0;
}
1 1
1 0
0 1
0 0