Respuesta :
Answer and Explanation:
X = input("Enter input word to be translated to pig latin: ")
# If the word begins with a vowel, add way to the end of the word
if X[0] == "a" or "e" or "i" or "o" or "u":
print(X + "way")
#the other condition
#If the word begins with a consonant, move the first letter to the end of the word and add ay
else:
print(X[1:] + X[0] + 'ay')