#include <stdio.h> int main() { int a, b,arr[10]; for(a=9;a>=0;a--) { scanf("%d",&arr[a]); } for(a=0;a<=9;a++) { printf("%d ",arr[a]); } return 0; }