// שאלה 2
using System;
int lowScore=0;
int nevhan=1;
while (nevhan<=23){
Console.WriteLine("כמה קיבלת במדמח?:");
int mark= int.Parse(Console.ReadLine());
if (mark<=55){
lowScore++;
}
nevhan++;
double ahuoz= (lowScore* 100.0)/23;
Console.WriteLine("האחוזים שלא עברו: "+ahuoz);