-1
name = requestString("Enter your name:")

age = requestNumber("Enter your age:")

height = requestNumber("Enter your height:")

print "Hello", name, "!", "i see that you are", num, "years old", "&", height, "tall"

Its not printing as i want it to print.

Tamil Selvan C
  • 19,913
  • 12
  • 49
  • 70

1 Answers1

0

There is no num vaiable declared.

use age instead of num in

print "Hello", name, "!", "i see that you are", num, "years old", "&", height, "tall"

Use

print "Hello", name, "!", "i see that you are", age, "years old", "&", height, "tall"
Tamil Selvan C
  • 19,913
  • 12
  • 49
  • 70