Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication16
- {
- class Program
- {
- static void Main(string[] args)
- {
- int x;
- int sum = 0;
- int y;
- x = int.Parse(Console.ReadLine());
- y = int.Parse(Console.ReadLine());
- for (int i = x; i < y; i++)
- {
- sum = sum + i;
- if (sum %2 !=0 )
- Console.WriteLine(sum);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement