def say_hi
    puts "Hi!"
end

def clap_hands(number)
    puts "Clap " * number
end

say_hi
clap_hands(3)