/** @file list0704.cpp */
/** Listing 7-4. Compute Sum of Integers from 10 to 20 */
#include <iostream>
#include <ostream>

int main()
{
  int sum(0);

  // Fill in the loop here.

  std::cout << "Sum of 10 to 20 = " << sum << '\n';
}
