def prostokat(a,b):
    pole = a * b
    print(f"Pole prostokata o bokach {a} i {b} wynosi {pole}")

prostokat(5,4)