using System;
public class Program
{
public static void Main()
int x, y, troca, impar=0 , i ;
Console.WriteLine(" Digite dois numeros: ");
x = int.Parse(Console.ReadLine());
y = int.Parse(Console.ReadLine());
if(x>y){
troca = x;
x=y;
y = troca;
}
for(i= x+1; i<y; i++){
if(i % 2 != 0){
impar = impar + i;
Console.WriteLine("SOMA IMPARES = " + impar);