What is the error message? Did you select C++ in the top right corner for the language? Your code seems OK to me. This is how the whole program should look (not just a snippet):
#include <iostream>
int main()
{
std::cout << "**********************************" << std::endl;
std::cout << "* Programming Assignment 1 *" << std::endl;
std::cout << "* Computer Programming I *" << std::endl;
std::cout << "* Author: Collin *" << std::endl;
std::cout << "* Due Date: Thursday, Jan. 24 *" << std::endl;
std::cout << "**********************************" << std::endl;
return 0;
}