fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int C1,C2,C3;
  6. cin>>C1>>C2>>C3;
  7. if (C1=C2=C3){
  8. cout<<"Won";
  9. }
  10. else {
  11. cout<<"Lost";
  12. }
  13. }
Success #stdin #stdout 0s 4704KB
stdin
SSS
stdout
Won