Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Created September 9, 2018 05:57
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/0a7ced7af3720a2b5dea3420b0de74cf to your computer and use it in GitHub Desktop.
Save whatalnk/0a7ced7af3720a2b5dea3420b0de74cf to your computer and use it in GitHub Desktop.
AtCoder ABC #109 A
a, b = gets.chomp.split(" ").map(&:to_i)
if (a * b).even?
puts "No"
else
puts "Yes"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment