#include <iostream>

int main() {
   for (char i = 0; true; ++i) {
       std::cout << int(i) << std::endl;
   }
   

}