puts "Hello World!" N = gets.to_i puts N*(N+1)/2 A, B = gets.split.map(&:to_i) S = gets.chomp puts "#{A+B} " + S N = gets.to_i (1..N).each do |i| if i%15 == 0 puts "FizzBuzz" elsif i%3 == 0 puts "Fizz" elsif i%5 == 0 puts "Buzz" else puts i end end N = gets.to_i puts gets.split.map(&:to_i).inject(:+) N = gets.to_i puts N.times.map{gets.to_i}.inject(:+)