From 30efe2a88efbe6f29d9a1d7353211f1e9a05dcc1 Mon Sep 17 00:00:00 2001 From: Sindhuja Golagani Date: Tue, 10 Feb 2026 21:35:46 +0530 Subject: [PATCH] Add completion message for arithmetic operations Added a print statement to indicate all arithmetic operations are covered. --- Programs/P01_hello.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Programs/P01_hello.py b/Programs/P01_hello.py index 2bab912..8bf2bd6 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -19,6 +19,7 @@ def justPrint(text): print("Multiply value is:", multiply_value) print("Modulus:", increment_value % base_value ) # % -> remainder print('Addition is:', int(a) + int(b)) + print("All the arthemitic operations are covered") if __name__ == '__main__': justPrint('Hello Sindhuja')