VAR a, b: integer;
begin
Readln (a);
b:= a div 10;
a:= a mod 10;
If (a+b)>9 then write ('yes')
else write ('no');
End.
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
VAR a, b: integer;
begin
Readln (a);
b:= a div 10;
a:= a mod 10;
If (a+b)>9 then write ('yes')
else write ('no');
End.