Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Created October 8, 2018 02:06
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/bbe35a1b5e73bdf70ecda09f1095c1f6 to your computer and use it in GitHub Desktop.
Save whatalnk/bbe35a1b5e73bdf70ecda09f1095c1f6 to your computer and use it in GitHub Desktop.
AtCoder ABC #112 A
n = gets.chomp.to_i
if n == 1
puts "Hello World"
else
a = gets.chomp.to_i
b = gets.chomp.to_i
puts a + b
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment