7 lines
165 B
Python
7 lines
165 B
Python
|
|
tamanho = int(input("digite o tamanho do pacote (bytes):"))
|
||
|
|
if tamanho < 500 :
|
||
|
|
print("pequeno")
|
||
|
|
elif tamanho <=1500:
|
||
|
|
print("medio")
|
||
|
|
else:
|
||
|
|
print("grande")
|