fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a[6] ,i,x,y,c;
  5.  
  6. scanf("%d %d",&x ,&y);
  7. for(i=0;i<6;i++)
  8. {
  9. scanf("%d",&a[i]);
  10. }
  11. for(i=0;i<6;i++)
  12. {
  13. if(x==a[i] && y==a[i])
  14. {
  15. c++;
  16. }
  17. }
  18. if(c==1)
  19. {
  20. printf("YES");
  21. }
  22. else
  23. {
  24. printf("NO");
  25. }
  26. }
  27.  
  28.  
  29.  
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
NO