#include <iostream>
#include <string>
#include <algorithm>
#include <ctype.h>
using namespace std;
void erasefirstsmall(string& t)
{
string::iterator pos = find_if(t.begin(), t.end(), ::islower);
t.erase(pos);
}
int main()
{
cout << "introduce text\n";
string text;
getline(cin, text);
erasefirstsmall(text);
cout << text << '\n';
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8c3RyaW5nPgojaW5jbHVkZSA8YWxnb3JpdGhtPgojaW5jbHVkZSA8Y3R5cGUuaD4KdXNpbmcgbmFtZXNwYWNlIHN0ZDsKCnZvaWQgZXJhc2VmaXJzdHNtYWxsKHN0cmluZyYgdCkKewogICAgc3RyaW5nOjppdGVyYXRvciBwb3MgPSBmaW5kX2lmKHQuYmVnaW4oKSwgdC5lbmQoKSwgOjppc2xvd2VyKTsKICAgIHQuZXJhc2UocG9zKTsKfQoKaW50IG1haW4oKQp7CiAgICBjb3V0IDw8ICJpbnRyb2R1Y2UgdGV4dFxuIjsKICAgIHN0cmluZyB0ZXh0OwogICAgZ2V0bGluZShjaW4sIHRleHQpOwogICAgZXJhc2VmaXJzdHNtYWxsKHRleHQpOwogICAgY291dCA8PCB0ZXh0IDw8ICdcbic7Cn0K