Swift atribuindo e acessando um valor de um opcional

let someValue:Int? = 5
print(someValue)
print(someValue!)
SAMER SAEID