From 8deef0e9b5ac6a9ae18238202fc5d1b31b621b25 Mon Sep 17 00:00:00 2001 From: bhavikb07 <43561956+bhavikb07@users.noreply.github.com> Date: Mon, 14 Oct 2019 19:52:55 +0530 Subject: [PATCH] Add files via upload --- break.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 break.py diff --git a/break.py b/break.py new file mode 100644 index 0000000..b801187 --- /dev/null +++ b/break.py @@ -0,0 +1,8 @@ +from sys import stdin + +n = 50 +for i in range(n, 0, -1): + if i == 4: + break + else: + print(i)