// CS319 -- Scientific Computing
// 03stringhello.cpp
#include <iostream>
#include <string>

int main()
{
  std::string message="Well, hello again.";
  std::cout << message << "\n";
  return(0);
}
 
