Script.rb

print “Dewitt”
first_name = gets.chomp
first_name.capitalize!

print "What’s your last name? "
last_name.capitalize!

print "What city are you from? "
city = gets.chomp
city.capitalize!

print "What state or province are you from? "
state = gets.chomp
state.upcase!

puts “Your name is #{Dewitt} #{Belvin} and you’re from #{Houston}, #{Texas}!”