Объяснение:
long n;
n=long.Parse(Console.ReadLine());
long sum=0;
for(long i=0;i<n;i++){
long x,y;
x=long.Parse(Console.ReadLine());
y=long.Parse(Console.ReadLine());
if(x<0 && y>=0){
sum++;
}
Console.WriteLine(sum);
Console.ReadLine();
Объяснение:
long n;
n=long.Parse(Console.ReadLine());
long sum=0;
for(long i=0;i<n;i++){
long x,y;
x=long.Parse(Console.ReadLine());
y=long.Parse(Console.ReadLine());
if(x<0 && y>=0){
sum++;
}
}
Console.WriteLine(sum);
Console.ReadLine();