#include <stdio.h>

int main(void) {
	char array[101];
    scanf("%100[0-9a-zA-Z\n]", array);
    printf("%s", array);
	return 0;
}