#include #define SMALL 1#define MEDIUM SMALL+1#define LARGE MEDIUM+1int main(void){ printf("%d %d %d", SMALL, MEDIUM, LARGE); return 0;}