From 5092b54225eeed6733a2ff36868d60b9a1cabd15 Mon Sep 17 00:00:00 2001 From: Jethro Stapelbroek Date: Fri, 13 May 2022 21:38:39 +0200 Subject: [PATCH] Faktor --- faktor.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 faktor.py diff --git a/faktor.py b/faktor.py new file mode 100644 index 0000000..a67bb43 --- /dev/null +++ b/faktor.py @@ -0,0 +1,3 @@ +import sys +a, i = sys.stdin.readline().split(' ') +print(int(a) * (int(i) - 1) + 1)