Oddly Even Posted Apr 11, 2025 By Heland views 1 min read Oddly Even Contents Oddly Even DESCRIPTIONTake in a number, print “odd” if odd and “even” if even. Example 1 2 Input: 3 Output: odd SOLUTION 1 2 n = int(input()) print("odd" if n % 2 != 0 else "even") HTB-challenge, misc, very-easy HTB CTF writeup coding Share