الرجوع
تسجيل الدخول

What will the following code output?

int sum = 0;
for (int i = 0; i <= 10; i++) {
    sum += i;
}
System.out.println(sum);