Skip to content

Instantly share code, notes, and snippets.

@Irene-123
Created November 7, 2020 03:00
Show Gist options
  • Save Irene-123/c5c763094dc47a430e90a545e39f0959 to your computer and use it in GitHub Desktop.
Save Irene-123/c5c763094dc47a430e90a545e39f0959 to your computer and use it in GitHub Desktop.
Codeforces- 705A Hulk problem
# KIRTI PUROHIT
# [email protected]
n=int(input())
hate=''
for i in range(1,n):
if i%2==0:
hate+=' I love that'
else:
hate+=' I hate that'
if n%2==0:
hate+=' I love it'
else:
hate+=' I hate it'
print(hate.strip())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment