

#include <stdio.h>

int main() {
	switch (3) {
		for (int i = 3; i > 0; --i) {
			case 3: printf("%d ololo?\n", i);
		}
	}
    return 0;
}
