#include <stdio.h> int main() { int i, j; scanf("%d %d", &i, &j); for (int k = i; k <= j; k++) { printf("%d\n", k); } return 0; }