fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. string a,b;
  5. getline(cin,a);
  6. getline(cin, b);
  7. stringstream ss(a);
  8. string tmp;
  9. while(ss >> tmp) {
  10. if(tmp!=b)
  11. cout<<tmp<<" ";
  12. }
  13. }
  14.  
Success #stdin #stdout 0.01s 5392KB
stdin
Toi Yeu Toi
Toi
stdout
Yeu