#!/usr/local/bin/perl

$string = <STDIN>;
$string =~ tr/0-9//cd;
print ("$string\n");
