Can you help me improve this little code so it's less extensive and clean?
The code compares three numbers and shows which one is the largest of them:
@IBAction func comprar(_ sender: Any) {
if pNumero.text! > sNumero.text! {
messageLabel.text = "Primeiro número e maior"
}
else if pNumero.text! < sNumero.text! {
messageLabel.text = "Segundo número e maior"
}
if tNumero.text! > pNumero.text!{
messageLabel.text = "o Terceiro número e maior"
}
else if tNumero.text! < sNumero.text! {
messageLabel.text = "o Terceiro número e maior"
}
else if pNumero.text! == sNumero.text!{
messageLabel.text = "Os dois números são iguais"
}