# variables and data correct_answers = 5 wrong_answers = 5 rounds_played = 10 # calculations correct_answers = rounds_played - wrong_answers percentage_won = correct_answers / rounds_played * 100 percentage_lost = wrong_answers / rounds_played * 100 print(f" the perecentage of correct answers is {percentage_won}% and the percentage of wrong answers is {percentage_lost}%")