a gleam implementation of a CS assignment originally written in cpp
1/*********************************************************
2* Summary:
3*
4* Author:
5* Created:
6*
7********************************************************/
8
9#include <iostream>
10#include <cstdlib>
11#include <fstream>
12
13using namespace std;
14
15int main() {
16
17 /* your code here */
18
19 return 0;
20}