#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
int main() {
string str;
srand((unsigned)time(0));
cout << "아래에 한 줄을 입력하세요.(exit를 입력하면 종료합니다)" <<endl;
while (1) {
int n,k1,k2;
int len,i=0;
cout << ">>";
getline(cin,str);
len = str.length();
n = rand()%(len+1);//문자열길이 내에서의 랜덤한 인덱스값 추출하는 랜덤정수 rand() % (마지막 값 - 시작 값 + 1) + 시작 값
k1 = rand()%(90-65+1)+65;//랜덤한 알파벳값을 추출하는 랜덤정수
k2 = rand()%(122-97+1)+97;
if(str == "exit") return 0 ;
if(str[n]>=65 && str[n]<=90){
str[n] = char(k1);
}
else if (str[n]>=97 && str[n]<=122){
str[n] = char(k2);
}
cout << str;
cout << endl;
}
return 0;
}