Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- a = int(input())
- b = int(input())
- c = int(input())
- if a == b and a == c:
- print("3")
- else:
- if a == b or a == c or b == c:
- print("2")
- else:
- print("0")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement