#include <iostream> #include <string> using namespace std; int main(void) { string org, match; while (getline(cin, org)){ getline(cin, match); string res; for (int i = 0; i < org.size(); ++i) { if(org[i]!=match[0]){ res += or...