I am a Python backend developer dedicated to continuous improvement and am currently enhancing my JavaScript skills. I am passionate about web development and have successfully completed various courses by Timur Guev on stepik.org, solving a multitude of programming challenges along the way. I am also committed to consistently improving my English proficiency. Independently, I developed a project to automate Microsoft account registration using only POST and GET requests via the curl_cffi module. I further extended this project to handle registration for the Microsoft Rewards program, implementing asynchronous requests to automatically earn points.
n, m = [int(i) for i in input().split()]
matrix = [[None for _ in range(m)]for _ in range(n)]
num = 1
for j in range(m + n - 1):
for i in range(n):
if j - i in range(m):
matrix[i][j - i] = num
num += 1
for row in matrix:
print(*[str(col).ljust(3) for col in row])
Belarusian State University 2015-2019