fork download
a=5
b=5
def obwod(a,b):
     return 2*a+2*b
def pole(a,b):
 	 return a*b
print("obwód wynosi", obwod(a,b))
print ("pole wynosi",pole(a,b))
Success #stdin #stdout 0.03s 9588KB
stdin
Standard input is empty
stdout
obwód wynosi 20
pole wynosi 25