#include <stdio.h>
int main(void) {
	char c = '0';
	fprintf(stdout, "Char %c is number %d in ascii table.\nRolling the bomb...\n", c, c);
	++c;
	fprintf(stdout, "\tNext one is %c, number %d", c, c);
	return 0;
}
