4 lines
119 B
Python
4 lines
119 B
Python
number = float(input('Enter number with lots of decimal number : '))
|
|
#print(round(number*2, 2))
|
|
print(round(number*2))
|