Created
November 7, 2020 03:00
-
-
Save Irene-123/c5c763094dc47a430e90a545e39f0959 to your computer and use it in GitHub Desktop.
Codeforces- 705A Hulk problem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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