Chanukah Challenge

This commit is contained in:
2023-06-26 14:26:48 +02:00
parent 5ad4fc2383
commit 37fd5d0905

4
chanukah.py Normal file
View File

@@ -0,0 +1,4 @@
p = int(input())
for _ in range(1, p + 1):
k, n = map(int, input().split())
print(f"{k} {( n * (n + 1) ) // 2 + n}")