Но мой код на Python работает. Итак,
print ("Hello")
print ("What's your name?")
name=input()
print("Welcome"+""+","+name+"!This is the test on the topic 'Numerals in English'. To pass the test just follow the instructions")
right=0#число правильных ответов
wrong=0#число ошибок
total=0#общее число ответов
print ("write in English: 86")
first=input()
if first=="eighty-six":
print("Right you are")
right+1;
total+1;
else:
print("You are mistaken")
wrong+1
total+1
print("Write in English: 235")
second=input()
if second=="two hundred and thirty-five":
print("Right you are")
right+1;
total+1;
else:
print("You are mistaken")
wrong+1;
total+1;
print("write in Enhlish: 485")
third=input()
if third=="four hundred and eighty-five":
print("Right you are")
right+1;
total+1;
else:
print("You are mistaken")
wrong+1;
total+1;
Это код теста по теме "Числительные в английском языке". Не благодарите.