atcoder#EXAWIZARDS2019A. Regular Triangle
Regular Triangle
Score : points
Problem Statement
You are given three integers and .
Determine if there exists an equilateral triangle whose sides have lengths and .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If there exists an equilateral triangle whose sides have lengths and , print Yes
; otherwise, print No
.
2 2 2
Yes
- There exists an equilateral triangle whose sides have lengths and .
3 4 5
No
- There is no equilateral triangle whose sides have lengths and .