Write a Ruby program : that prompts a user to enter a number then use the appropriate control-statement to check if the number is a multiple of 2 if it is, then print "The number entered is a multiple of 2" if not, it should check if it is a multiple of 3 if it is, then print "The number entered is a multiple of 3" if not, it should check if it a multiple of 4 if it is, then print "The number entered is a multiple of 4" if not, it should print "The number is not a multple of 2, 3 or 4"