var ageInput: String = "16"
var age = Int(ageInput)//类型转换涉及到可选型
if let age = age, age < 20{
print("you are teenager\n")
}