using System;
//שאלה 2 א
bool Pehula (int [] firstMonth,int [] secondMonth){
int firstNitokim = 0;
bool state = false;
for(int n = 0; n<31; n++){
int nitok= firstMonth[n];
firstNitokim += nitok;
}
int secondNitokim = 0;
for (int n = 0; n<31; n++){
int nitok= Math.Sign(secondMonth[n]);
secondNitokim += nitok;
if(secondNitokim <= firstNitokim * 0.75 ){
state = true;
return state;
Console.Write(Pehula (new int[]{32,23}, new int[]{50, 444, -33}));