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

d = int(input())
c = int(input())
n = int(input())
for i in range(n):
    unit_cost, unit_revenue, quantity = [int(j) for j in input().split()]

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

print("answer")