# easy game
print('Welcome to ****...')
answer=input('Do you whant to play a game: ')
score=0
total_questions=5
if answer.lower()=='yes':
answer=input('1. What is the best coding language: ')
if answer.lower()=='python':
score += 1
print('Your right! Keep playing!')
else:
print('No that not it!')
answer=input('2. Are you dumb: ')
if answer.lower()=='yes':
score += 1
print('Yes you are domb!')
else:
print('No you are not smart...')
answer=input('3. What is the thing that you sh*t on: ')
if answer.lower()=='toilet':
score += 1
print('Yes is you!')
else:
print('No you dont sh*t on that...')
answer=input('4. What is 1 + 3 * 5: ')
if answer=='20':
score += 1
print('Yes')
else:
print('No')
answer=input('5. What is the thing that you read: ')
if answer.lower()=='book':
score += 1
print('Yes that what you read!')
else:
print('No you dont read on that!')
print('Thankyou for playing, you got',score,"question correct!")
mark=(score/total_questions)*100
print('SCORE is:',mark," out of 100!")
print('BEY')