#include <iostream> using namespace std; int main() { char a; while(cin >> a) { cout << char(a+32) <<endl; } } // 64 位输出请用 printf("%lld")