Skip to content

Commit

Permalink
[#4] Feat: Add A+B - 7
Browse files Browse the repository at this point in the history
  • Loading branch information
letsjo committed Mar 29, 2023
1 parent 7caaf20 commit 1bb1346
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions 11021.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# A+B - 7

T = int(input())

for i in range(T):
input_data = input().split(' ')
A = int(input_data[0])
B = int(input_data[1])
print(f'Case #{i+1}: {A+B}')

0 comments on commit 1bb1346

Please sign in to comment.