Skip to content

Instantly share code, notes, and snippets.

@reo91004
Last active September 14, 2022 11:45
import sys
input = sys.stdin.readline
if __name__ == "__main__":
for i in range(int(input())):
x, y = map(int, input().split())
print(f"Case #{i+1}: {x + y}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment