A)
var s,s1: string;
begin
readln(s);
readln(s1);
if length(s)> length(s1)
then write(s) else
write(s1);
end.
Б)
if length(s)<length(s1)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
A)
var s,s1: string;
begin
readln(s);
readln(s1);
if length(s)> length(s1)
then write(s) else
write(s1);
end.
Б)
var s,s1: string;
begin
readln(s);
readln(s1);
if length(s)<length(s1)
then write(s) else
write(s1);
end.