#ifndef COUNT_H
#define COUNT_H

void count(int start, int stop, int step);
#define MAX(a,b) (a>b ? a : b)
#endif