Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Created April 15, 2019 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whatalnk/41f1e6abeb9d5f47ea22c3926a93d644 to your computer and use it in GitHub Desktop.
Save whatalnk/41f1e6abeb9d5f47ea22c3926a93d644 to your computer and use it in GitHub Desktop.
Exawizards 2019 A - Regular Triangle
a, b, c = gets.chomp.split(" ").map(&:to_i)
if a == b && b == c
puts "Yes"
else
puts "No"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment