Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 431 Bytes

File metadata and controls

16 lines (10 loc) · 431 Bytes

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.