fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b, c, x;
  6. cin >> a >> b >> c >> x;
  7. cout << "Clientul ";
  8. if (a == x) {
  9. cout << 1;
  10. } else if (b == x) {
  11. cout << 2;
  12. } else {
  13. cout << 3;
  14. }
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5292KB
stdin
13  7 180 180
stdout
Clientul 3