using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string s = "c# 1 c++ 2 java ! python ?";
Console.WriteLine(s);
foreach (char ch in s)
{
if (char.IsLetterOrDigit(ch))
{
Console.Write('y');
}
else
{
Console.Write(' ');
}
}
}
}
}
/*
run:
c# 1 c++ 2 java ! python ?
y y y y yyyy yyyyyy
*/