#include <iostream>

int main() {
	int i = 5;
	switch(i) {
		case 0 ... 10:
		  std::cout << i << std::endl;
		  break;
	}
	return 0;
}