What is the time complexity of the code below? int sum = 0; for(int i=0; i<n; i++) sum += i; return sum;