#include //for the macro EXIT_SUCCESS #include "prefix.h" int main() { //Read the input. prefix pre1; pre1.read_input(); //Generate the output. prefix pre2; pre2.generate_output(); return EXIT_SUCCESS; }