//: Playground - noun: a place where people can play
//JEHOVANI DE JESUS CHAVEZ SEGOVIA 2561842011
//CUADRADO DE UN FLOTANTE
import UIKit
var numf: Float = 4.5
var result: Float = 0
result = numf * numf
println("El resultado es: \(result)")