1 |
using System;
|
2 |
class Program
|
3 |
{
|
4 |
static float average(int x, int y)
|
5 |
{
|
6 |
return ((float)((x + y) / 2.0));
|
7 |
}
|
8 |
static void Main()
|
9 |
{
|
10 |
int x = Convert.ToInt32(Console.ReadLine());
|
11 |
int y = Convert.ToInt32(Console.ReadLine());
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
}
|
23 |
}
|