//#################################################################################
//#################################################################################
// A C++ program to print "Hello, world" to the standard output
//
// Author: Sherry Towers
//         smtowers@asu.edu
// Created: Feb 8th, 2013
//
//#################################################################################

# include <iostream>
 
int main(){
   std::cout << "Hello, world!\n";      
   std::cout << "Hello, world!" << std::endl;  // this does the same thing
   return 0;
}

