summaryrefslogtreecommitdiff
path: root/progs/test.py
diff options
context:
space:
mode:
authorEmanuele Grasso <96300448+L0P0P@users.noreply.github.com>2024-07-14 18:48:09 +0200
committerGitHub <noreply@github.com>2024-07-14 18:48:09 +0200
commitce49d20a5fe3726e1800bc495a25c7617212abf4 (patch)
tree5a1a79efa79e7bf6dcf3d3151aec2edf6a47b3e7 /progs/test.py
parent57599a42b863cc48050c137de2ec108aa1d59a44 (diff)
Reaching definition analysis (#17)
Co-authored-by: Santo Cariotti <santo@dcariotti.me> Co-authored-by: geno <gabriele.genovese2@studio.unibo.it> Co-authored-by: geno <gabrigeno@gmail.com>
Diffstat (limited to 'progs/test.py')
-rw-r--r--progs/test.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/progs/test.py b/progs/test.py
index 4ccfb1a..ef59445 100644
--- a/progs/test.py
+++ b/progs/test.py
@@ -1,3 +1,8 @@
+n = int(input())
+x = int(input())
m = 1
-for i in range(10):
- m = m + 1
+while n > 1:
+ tmp = 2 * x
+ m = m * tmp
+ n = n - 1
+print(m + tmp)