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