Given the following variables,
var lat = 40.765819 var lng = -73.975866
write the statement to output the following:
Lat/Lng is (40.765819, -73.975866)
You can use the string interpolation method to include Double values in your output:
var lat = 40.765819 var lng = -73.975866 print("Lat/Lng is (\(lat), \(lng))")