diff options
Diffstat (limited to 'python/code/1/6.py')
-rw-r--r-- | python/code/1/6.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/python/code/1/6.py b/python/code/1/6.py deleted file mode 100644 index e3a3cd0..0000000 --- a/python/code/1/6.py +++ /dev/null @@ -1,4 +0,0 @@ -a = float(input('Enter first number: ')) -b = float(input('Enter second number: ')) -print('Concatenation of integer parts:', ''.join(str(int(i)) for i in (a, b))) -print('Sum rounded to 2 decimal places:', round(a + b, 2)) |