Valid Pair - CodeChef Solution

Hello coders, today we are going to solve Valid Pair CodeChef Solution whose Problem code is SOCKS1. Chef has three socks in his drawer. Each sock has

Hello coders, today we are going to solve Valid Pair CodeChef Solution whose Problem code is SOCKS1.

Valid Pair - CodeChef Solution

Task

Chef has three socks in his drawer. Each sock has one of 10 possible colours, which are represented by integers between 1 and 10. Specifically, the colours of the socks are A, B, and C.

Chef has to wear two socks which have the same colour. Help Chef find out if that is possible or not.

Input

The first and only line of the input contains three space-separated integers A, B and C.

Output

Print a single line containing the string "YES" if it is possible for Chef to wear two socks with the same colour or "NO" if it is impossible (without quotes).

You may print each character of each string in uppercase or lowercase (for example, the strings "yEs", "yes", "Yes" and "YES" will all be treated as identical).

Constraints

  • 1 <= A, B, C <= 10

Subtasks

Subtask #1 (100 points): Original Constraints 

Example Input 1

5 4 3

Example Output 1

NO

Explanation

Since there are no two socks with the same colour, Chef cannot wear a pair of socks with the same colour.

Example Input 2

5 5 5

Example Output 2 

YES

Explanation 

Since all three socks have the same colour, Chef can wear a pair of socks with the same colour.

Solution - Valid Pair - CodeChef Solution 

Python 3 

# Solution Provided by Sloth Coders
a, b, c = map(int, input().split())
if a == b:
    print("YES")
elif b == c:
    print("YES")
elif a == c:
    print("YES")
elif a == b == c:
    print("YES")
else:
    print("NO")

Disclaimer: The above Problem (Valid Pair) is generated by CodeChef but the Solution is provided by Sloth Coders.

A Sloth Who loves to Code

Also Read:

Sloth Coders is a Learning Platform for Coders, Programmers and Developers to learn from the basics to advance of Coding of different langauges(python, Java, Javascript and many more).

Post a Comment