#include <stdio.h>

int main(void) {
	// your code goes here
	char hoge[1024]={};
	scanf("%[^¥\"]",hoge);
	puts(hoge);
	return 0;
}
