#include<bits/stdc++.h> using namespace std; int main(){ char a[26]; cout<<"Enter your plain text : "; string s; cin>>s; cout<<"Enter the value of key : "; int key; cin>>key; cout<<key<<endl; cout<<"The ciphered text is : "; for(int i=0;i<s.length();i++) cout<