program Multy;
var i, n, x, mt:integer;
begin
write('введите целое число X ');
readln(x);
write('введите степень N ');
readln(n);
mt:=x;
for i:=1 to (n-1) do
begin
mt:=mt*x;
end;
writeln(x,' в степени ',n,' равно ',mt);
end.
<span>3) D:\ ДОКУМЕНТЫ \ЭКЗАМЕН \ИНФОРМАТИКА</span>
using System;
namespace ConsoleApp6
{
class Program
{
static void Main(string[] args)
{
int x, y;
x = int.Parse(Console.ReadLine());
y = int.Parse(Console.ReadLine());
if (Math.Max(x, y) % 2 == 0)
Console.WriteLine(Math.Max(x, y).ToString());
else
Console.WriteLine((Math.Min(x,y)*Math.Max(x,y)/2.0).ToString());
Console.ReadKey();
}
}
}