#include int main() { int const a = 100; const int b = 200; printf("a: %d\n", a); printf("b: %d\n", b); return 0; }