diff --git a/src/binary_converter.py b/src/binary_converter.py index 57139210..2ef29184 100644 --- a/src/binary_converter.py +++ b/src/binary_converter.py @@ -5,3 +5,5 @@ # Insert first number: 8 # The binary number is: 1000 # +x = int(input("Inserire valore da convertire ")) +print(f"Il valore convertito รจ {x:b}")