Ответ:
Pascal:
var a,b,c, P:integer;
begin
readln(a,b,c);
P := a+b+c;
writeln(P);
end.
Python:
a = float(input())
b = float(input())
c = float(input())
P = a+b+c
print(P)
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Pascal:
var a,b,c, P:integer;
begin
readln(a,b,c);
P := a+b+c;
writeln(P);
end.
Python:
a = float(input())
b = float(input())
c = float(input())
P = a+b+c
print(P)
Объяснение: