Created
May 31, 2020 12:47
-
-
Save andriiburka/7d3e80bc191ba319298e9d7b18139dd0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| r, c = input().split(', ') | |
| matrix = [] | |
| for i in range(int(r)): | |
| matrix.append(input().split(', ')) | |
| max1, max2 = 0, 0 | |
| for li in matrix: | |
| for i in range(len(li)): | |
| print(li[i]) | |
| if int(li[i]) > 0: | |
| max1 = int(li[i]) | |
| print(qwerty) | |
| # КОДА Е НЕДОПИСАН, ИДЕЯТА Е В КАЧВАНЕТО |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment