#include "library.h" void count_up(const int from, const int to) { print(from); new_line(); if (from < to) count_up(from+1, to); } void main() { count_up(1, 15); }