Problem: Equal 3 Numbers
Write a program that inputs 3 numbers and prints whether they are the same (yes / no).
Sample Input and Output
Input | Output |
---|---|
5 5 5 |
yes |
5 4 5 |
no |
1 2 3 |
no |
Testing in the Judge System
Test your solution here: https://judge.softuni.org/Contests/Practice/Index/506#14.