#EXAWIZARDS2019A. Regular Triangle

Regular Triangle

Score : 100100 points

Problem Statement

You are given three integers A,BA, B and CC.

Determine if there exists an equilateral triangle whose sides have lengths A,BA, B and CC.

Constraints

  • All values in input are integers.
  • 1A,B,C1001 \leq A,B,C \leq 100

Input

Input is given from Standard Input in the following format:

AA BB CC

Output

If there exists an equilateral triangle whose sides have lengths A,BA, B and CC, print Yes; otherwise, print No.

2 2 2
Yes
  • There exists an equilateral triangle whose sides have lengths 2,22, 2 and 22.
3 4 5
No
  • There is no equilateral triangle whose sides have lengths 3,43, 4 and 55.