@ -816,7 +816,7 @@ return {
// Hint: Your program does not have to compute the sum and
// max of the array, despite the suggestive names of the
// out-parameters.
method M(N: int, a: array‹int›) returns (sum: int, max: int)
method M(N: int, a: array<int>) returns (sum: int, max: int)
requires 0 <= N & a != null & a.Length == N;
ensures sum <= N * max;
{