Advertisement
simeonshopov

Equal numbers

Sep 17th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. first = int(input())
  2. second = int(input())
  3. third = int(input())
  4.  
  5. if first == second == third:
  6.   print("yes")
  7. else:
  8.   print("no")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement