Hi everyone,plz i need help from anyone to check if this program is writthen correctly
{
A program to read two values A and B and print the highets value
}
Val A
:
integer
;
Val B:integer
;
Begin A
:
=10
;
B:=12
;
if A
>
B then
begin
writeln
(
'
A is highest value
'
)
end;
if B
>
A then
writeln
(
'
B is highest value
'
)
End
.