aboutsummaryrefslogtreecommitdiff
path: root/problems/budgettraveler/attachments/template.py
blob: 235276d18c5360d0326eea133cefd76c7066f090 (plain)
1
2
3
4
5
6
7
8
9
10
11
import sys
import math

n = int(input())
for i in range(n):
    x, y = [int(j) for j in input().split()]

# Write an answer using print
# To debug: print("Debug messages...", file=sys.stderr, flush=True)

print("answer")