#include int main() { int x,y,z; int temp; scanf("%d %d %d",&x,&y,&z); temp=x; x=y; y=z; z=temp; printf("%d %d %d\n", x, y, z); return 0; }