#include <bits/stdc++.h>
using namespace std;
int main(){
string str, str1;
cin >> str;
str1 = str;
int pos = 0;
/*tolower()函数是把字符串都转化为小写字母;toupper()函数是把字符串都转化为大写字母
transform(first,last,result,op);
first是容器的首迭代器,last为容器的末迭代器,result为存放结果的容器,op为要进行操作的一元函数对象或sturct、c...