Join Regular Classroom : Visit ClassroomTech

Wipro NLTH Coding Solve | Sales Report | Codewindow.in

A company has a sales record of N products for M days. The company wishes to know the maximum revenue received from a given product of the N products each day. Write an algorithm to find the highest revenue received each day.

Input
The first line of the input consists of two space-separatedIntegers-days (M) and products(N), representing the days and the products in the sales record. The next M lines consist of N space-separated integers representing the sales revenue received from each product each day.

Output
Print M space-separated integers representing the maximum received each day.

Constraints
NA

Example

Input:
3 4
100 198 333 323
122 232 221 111
223 565 245 764

Output:
333 232 764

Explanation:
The maximum revenue received on the first day is 333, followed by a maximum revenue of 232 on the second day and a maximum revenue of 764 on the third day.

rows,cols=list(map(int,input().split()))
arr=[]
for i in range(rows):
    row=list(map(int,input().split()))
    arr.append(max(row))
print(*arr)

Also Checkout

Recent Posts
Categories
Pages