Перевести код программы с паскаля на пайтон program vlad2;
uses crt;
var
a,b,c:integer;
begin
write('a='); //ввод переменой a
readln(a);
write('b='); //ввод переменой b
readln(b);
write('c='); //ввод перменой с
readln(c);
begin
if ((a+b) mod 2=0) then
write('a+b');
if ((a+c) mod 2=0) then
write('a+c');
if ((b+c) mod 2=0) then
write('b+c');
end;
end.
a = int(input("a="))
b = int(input("b="))
c = int(input("c="))
if (a+b) % 2 == 0 :
print("a+b")
if (a+c) % 2 == 0 :
print("a+c")
if (b+c) % 2 == 0 :
print("b+c")
Объяснение:
"mod" => "%"
"=" => "==" в сравнениях
"then" => ":"