运行结果尺寸: 625 x 591
x
 
#include <iostream>
using namespace std;
int main() {
  int x = 5;
  int y = 3;
  cout << (x != y); // returns 1 (true) because 5 is not equal to 3
  return 0;
}
1