int x, y, z, w, s1, s2, s; ... cobegin s1 = x + y s2 = z + w coend; s = s1 + s2
...
cobegin
s1 = x + y
s2 = z + w
coend;
s = s1 + s2
int A[100],B[100],C[100],i; ... cobegin C[i] = A[i] + B[i]; coend
C[i] = A[i] + B[i];
coend
Qual é o tempo mínimo para se fazer esta soma sequencialmente? E em paralelo?