#include using namespace std; string encrypt(string s, string key) { string ans = ""; key += s; for(int i=0; i> s >> key; // cout << encrypt(s, key) << endl; cout << decrypt(s, key) << endl; }