#include "stdio.h" int main (void) { int x = 112; printf("%d %x %u %c %o\n", x, x, x, x, x); return 0; }