func IWon(myNum:Int, otherNum:Int)->String { if(myNum == otherNum) { return "Drew" } if(myNum == 0 && otherNum == 2) { return "Lost" } return myNum