online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
import random import math M = random.randint(1,5) print("M = " + str(M)) N = random.randint(1,5) print("N = " + str(N)) mat = [[random.randint(0,10) for y in range(M)] for i in range(N)] for i in range(N): print(mat[i]) def maxaverline(mat): return min(sum(line) / len(line) for line in mat) print("Ответ: " + str(maxaverline(mat)))

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue