Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. score = 100
  2. teamA = 90
  3. teamB = 90
  4. if teamA > teamB and teamA == score :
  5. print("Team A wins the match")
  6. else :
  7. if teamB < score and teamB > teamA :
  8. print("Team B wins the match")
  9. else :
  10. print("It's a tie")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement