Swift - Optionals
You have an optional string
var input: String? = nil. You want to print its value only if it exists, otherwise print "No input". Which code safely achieves this without crashing?