def remove_first_company():
    companies = input().split()
    del companies[0]
    return companies

print(remove_first_company())