Здесь Вы можете найти ответы на многие вопросы или задать свой вопрос!
2^6 = 64 - значит 6 лампочек
var x1,x2,x3,x4,x5: integer;
s: real;
begin
read(x1,x2,x3,x4,x5);
s: = (x1+x2+x3)/(x4+x5);
if round(s)=s then writeln("celoe - "s);
end.
var
a: integer;
readln(a);
writeln(a*(a div 10 + (a mod 10)*10));
var a,b,c: integer;
clrscr;
readln(a,b,c);
if a = b then writeln(c);
if b = c then writeln(a);
if a = c then writeln(b);
readkey;
Популярные вопросы