7 lines
79 B
Python
7 lines
79 B
Python
a=5
|
|
b=10
|
|
|
|
produkt = a * b
|
|
|
|
print(f'Das Produkt aus {a} und {b} ist {produkt}')
|