def max_path(pyramid,n): return 1 n = int(raw_input())pyramid = []for i in range(0,n): pyramid.append(map(lambda x: int(x), raw_input().strip().split(' ')))print max_path(pyramid,n)
5 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5
1
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!