#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';
}
