//Pascal
var
S: string;
bits, Bytes: integer;
KBytes: real;
begin
S := 'Но так и быть! Судьбу мою отныне я тебе вручаю.';
writeln(S);
Bytes := Length(S);
bits := Bytes * 8;
KBytes := Bytes / 1024;
writeln('бит = ', bits);
writeln('Байт = ', Bytes);
writeln('КБайт = ', KBytes);
end.