#include <stdio.h>
#include <string.h>
int main() {
char *a = "ersten";
char *b = "zweiten";
char *c = "dritten";
char *current = a;
printf("Wir befinden uns im %s Stock\n", current);
current = b;
printf("Wir befinden uns im %s Stock\n", current);
current = c;
printf("Wir befinden uns im %s Stock\n", current);
return 0;
}