// https://omegaup.com/arena/problem/Tres-Numeros-Al-Reves 
#include <stdio.h> 
 
int main( ) { 
   int a, b, c; 
   scanf("%d%d%d", &a, &b, &c); 
   printf("%d\n%d\n%d", c, b, a); 
   return 0; 
}
