#include <stdio.h>

int main(void) {
char symbol;
        
        scanf("%c", &symbol);

        printf("|%c|\n", symbol);
	return 0;
}
