#include int main() { char c; for(c='a'; c<='z'; c++) { printf(" %hhd", c); } putchar('\n'); return 0; }