" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
var
s,a,b:double;
begin
s:=0;
a:=0;
b:=0;
write('Podaj a: ');
readln(a);
write('Podaj b: ');
readln(b);
s:=a+b;
writeln('s = a + b');
writeln('s = ',s:0:2);
readln;
end.