fork download
  1. a=5
  2. b=5
  3. def obwod(a,b):
  4. return 2*a+2*b
  5. def pole(a,b):
  6. return a*b
  7. print("obwód wynosi", obwod(a,b))
  8. 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