eta = int(input("Quanti anni hai? "))
print("Hai", eta, "anni")
if eta < 18:
    print("Sei minorenne")
else:
    print("Sei maggiorenne")

