#include <stdio.h>
#include <string.h>
int main() {
char a[] = "А роза упала на лапу Азора";
char *t = a;
while (t <= a + strlen(a)) {
printf("%c", *t);
t++;
};
puts("");
while (t >= a) {
printf("%c", *t);
t--;
};
puts("");
return 0;
}