#include /*void ft_print_alphabet(void)*/ /*void ft_putchar(char c)*/ main() { { char c; for (c='a'; c<='z'; c++) write(1, &c, 1); } return 0; }