i am doing a task on a website and its interpeter doesnt allow lines to be longer than 121 characters long, so how can i shorten them?
x = input()
if ('giant' in x or 'Giant' in x or 'GIANT' in x) and ('lilliput' not in x or 'Lilliput' not in x or 'LILLIPUT' not in x):
print("In the land of giants.")
elif ('lilliput' in x or 'Lilliput' in x or 'LILLIPUT' in x) and ('giant' not in x or 'Giant' not in x or 'GIANT' not in x):
print("In the land of the Lilliput.")
else:
print("I'm completely confused.")