Codey and CodeNection 2
https://www.hackerrank.com/contests/codenection-2023-final-round-closed-category/challenges/cn-c10
Last updated
https://www.hackerrank.com/contests/codenection-2023-final-round-closed-category/challenges/cn-c10
Last updated
string = "I LOVE CODENECTION"
t = int(input())
if t % 2 == 1:
print(string[::-1])
else:
print(string)