fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b, c;
  6. cin >> a >> b >> c;
  7. cout<<((a%2+b%2+c%2!=0) and (a%2+b%2+c%2!=3) ? "YES":"NO");
  8. return 0;
  9. }
Success #stdin #stdout 0s 15232KB
stdin
1 2 3
stdout
YES