#include <iostream>

int main() {
	int ch = '\v';
	
	std::cout << std::hex << ch << std::endl;

	return 0;
}