View difference between Paste ID: CyYqBm9p and e1r42X9x
SHOW: | | - or go back to the newest paste.
1
#include <iostream>
2
using namespace std;
3
4
int main(){
5
	int a;
6
	a = 10;
7
	
8
	if(true || a == (a = 14)) {
9-
		cout<<a; //10
9+
		cout << a; //10
10
	}
11
	return 0;
12
}