From db8bedbccb7b789b5050e70c631f7952c986c88f Mon Sep 17 00:00:00 2001 From: yashj0511 <72185189+yashj0511@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:30:47 +0530 Subject: [PATCH 1/3] comment for integer division --- BigIntegerTest/BigIntegerTest1.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BigIntegerTest/BigIntegerTest1.in b/BigIntegerTest/BigIntegerTest1.in index 9c998bb..038492e 100644 --- a/BigIntegerTest/BigIntegerTest1.in +++ b/BigIntegerTest/BigIntegerTest1.in @@ -3,4 +3,4 @@ b = -272833596647573841463847089780265472183084449880465449923268879316894887783 print(a + b) print(a - b) print(a * b) -print(a // b) +print(a // b)#performing integer division by using // From 3193c886ff2a052c5b1924127fb5c3f6995ccf9b Mon Sep 17 00:00:00 2001 From: yashj0511 <72185189+yashj0511@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:34:38 +0530 Subject: [PATCH 2/3] added comment From f4c549fb415ca29e7e367e7a7c526b4b0a67df71 Mon Sep 17 00:00:00 2001 From: yashj0511 <72185189+yashj0511@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:42:15 +0530 Subject: [PATCH 3/3] Added print statement --- testData/test11.in | 1 + 1 file changed, 1 insertion(+) diff --git a/testData/test11.in b/testData/test11.in index 87ed76e..8436ef1 100644 --- a/testData/test11.in +++ b/testData/test11.in @@ -2,6 +2,7 @@ def foo(a): print(a) i = 0 +print("numbers are") while i < 10: foo(i) i += 1