12 lines
202 B
Text
12 lines
202 B
Text
def bound(field x) -> u32 {
|
|
return 41 + 1;
|
|
}
|
|
|
|
def main(field a) -> field {
|
|
field mut x = 7;
|
|
x = x + 1;
|
|
for u32 i in 0..bound(x) + bound(x + 1) {
|
|
x = x + a;
|
|
}
|
|
return x;
|
|
}
|