print "When were you born? "
born_year = gets.chomp.to_i
print "How tall are you? "
height = gets.chomp
print "How much do you weight? "
weight = gets.chomp
age = 2016 - born_year
puts "So, you're #{age} old, #{height} tall and #{weight} heavy."
print "When were you born? "
born_year = gets.chomp.to_i
print "How tall are you? "
height = gets.chomp
print "How much do you weight? "
weight = gets.chomp
age = 2016 - born_year
puts "So, you're #{age} old, #{height} tall and #{weight} heavy."