// CS319  - Scientific computing
// 01hello.cpp
// A very first example for a C++ program
#include <iostream>

int main()
{
  std::cout << "Howya world!\n";
  return(0);
}

