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. if (a == x) {
  8. cout << "Clientul 1";
  9. } else if (b == x) {
  10. cout << "Clientul 2";
  11. } else if (c == x){
  12. cout << "Clientul 3";
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5284KB
stdin
1 2 3 3
stdout
Clientul 3