Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Last active March 16, 2018 02:01
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/16160481a1165f0a8af9af40473374b9 to your computer and use it in GitHub Desktop.
Save whatalnk/16160481a1165f0a8af9af40473374b9 to your computer and use it in GitHub Desktop.
AtCoder ABC #089 B. Hina Arare
# https://beta.atcoder.jp/contests/abc089/submissions/2210616
gets
n = gets.chomp.split(" ").uniq.length
if n == 3 then
puts "Three"
else
puts "Four"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment