Var a, b, n:real;
Begin
Write('a=') ;read(a) ;
Writeln ;
Write('b=') ;read(b) ;
N:=sqrt(a+b) ;
Writeln(N)
End.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Var a, b, n:real;
Begin
Write('a=') ;read(a) ;
Writeln ;
Write('b=') ;read(b) ;
N:=sqrt(a+b) ;
Writeln(N)
End.