fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. #define el "\n"
  4. #define ll long long
  5. #define ull unsigned long long
  6. #define se second
  7. #define fi first
  8. #define be begin()
  9. #define en end()
  10. #define Faster cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
  11.  
  12. int main()
  13. {
  14. Faster;
  15. int xA, yA, xB, yB, xC, yC;
  16. cin >> xA >> yA >> xB >> yB >> xC >> yC;
  17. if((yB - yA) * (xC - xB) == (yC - yB) * (xB - xA)) cout << "YES";
  18. else cout << "NO";
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0.01s 5280KB
stdin
0 0 1 1 2 2
stdout
YES