#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <unistd.h>


int main(int argc, char** argv) {

    char* program = "+++++++++++++++++++++++++++++++++."; // Prints "!". Edit here for other programs.
    int   program_ptr = 0;
    char  program_symbol;

    // Initialize memory cells to 0
    char data[30000] = {0};

    // Pointer, initialized to point to the first cell
    int ptr = 0;


    // Edit here

    // Use
    //   program_symbol = program[program_ptr]
    // to get the next symbol being read from the program.

    // Use
    //   data[ptr]
    // to get number in the cell under the pointer
}
