9 lines
134 B
Python
9 lines
134 B
Python
import numpy as np
|
|
|
|
a = 2
|
|
b = 3
|
|
c = 4
|
|
|
|
print("Wynik dodawania to: ", end='')
|
|
print(a+b+c)
|
|
print("Wynik mnożenia to: ", a*b*c, end='') |