#include <stdio.h>int main(){ int i,a,b; scanf("%d %d",&a,&b); for( ; i<=b ; i=i+1) { printf("%d ",i); } return 0;}