From 9e86a04d2ae35ba2c6243e1a5f64a9d6a5c25072 Mon Sep 17 00:00:00 2001 From: suganthan <cb.en.u4cse16352@cb.students.amrita.edu> Date: Sat, 22 Dec 2018 21:01:34 +0530 Subject: [PATCH] new arithematic statements added in cdat repo --- first.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/first.py b/first.py index c58e7c4..f12531d 100644 --- a/first.py +++ b/first.py @@ -1,3 +1,8 @@ print("hello world") print("suganthan") print("cdat") + +print("1 + 2", 1 + 2) +print("1 * 2", 1 * 2) +print("1 / 2", 1 / 2) +print("1 - 2", 1 - 2) -- GitLab