import Foundation
print("Welcome to Dicoding Academy")
print("----------------------------------")
print("Input your first name: "); let firstName = readLine()!
print("Input your last name: "); let lastName = readLine()!
print("Input your city domicile: "); let address = readLine()!
print("Input your occupation: "); let job = readLine()!
print("Input your age: "); let age = readLine()!
let fullName = firstName + " " + lastName
print("----------------------------------")
print("Do you know \(fullName)?")
print("\(firstName) is a \(job)")
print("Right now he is \(age) years old and live in \(address)")
print("----------------------------------")