## https://yukicoder.me/contests/566 def main(): N = int(input()) s = "Short" s1 = s[0:N] print(s1) if __name__ == "__main__": main()