Округляем к большему
log2 50. Получаем 6 (бит)
N i K
8 3 200*3=600
16 4 110*4=440
64 6 120*6=720
128 7 100*7=700
256 8 80*8=640
Var
a,b,c,max:real;
begin
write('a=');
readln(a);
write('b=');
readln(b);
write('c=');
readln(c);
max:=a;
if (b>a) and (b>c) then max:=b;
if (c>b) and (c>a) then max:=c;
write('Максимальное число: ',max:5:2);
readln;end.
Ответ:
ниже
Объяснение:
text = input()
text2 = input()
i = 0
while text[i] == text2[i]:
i += 1
print(i)