Contact: aviboots(AT)netvision.net.il
41,163 questions
53,655 answers
573 users
import Foundation let score = 85 let grade = score >= 90 ? "A" : score >= 80 ? "B" : "C" print(grade) /* run: B */