using System;
int numfirst = 0;
int numsecond = 0;
bool correct = false;
bool peula(int[] first, int[] second) {
Console.Write("enter \"1\" for secses and \"0\" for failier (first month)");
Console.Write("enter \"1\" for secses and \"0\" for failier (second month)");
for(int c = 0; c < 31; c++) {
first[c] = int.Parse(Console.ReadLine());
if(first[c] == 1) {
numfirst++;
}
for(c = 0; c < 31; c++) {
second[c] = int.Parse(Console.ReadLine());
numsecond++;
bool x = numsecond == numfirst + numfirst / 100 * 25;
correct = x;
if(correct == true) {
return true;