mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-01-27 01:01:59 +00:00
7 lines
177 B
Python
7 lines
177 B
Python
def ft_plot_area():
|
|
print("Enter length:", end=" ")
|
|
len = int(input())
|
|
print("Enter width:", end=" ")
|
|
width = int(input())
|
|
print("Plot area: ", len * width)
|