4 lines
93 B
Text
4 lines
93 B
Text
// a and b are factorization of c
|
|
def main(c, private a, private b):
|
|
c == a * b
|
|
return 1
|