using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 128; i++)
{
if (char.IsPunctuation((char)i))
{
Console.WriteLine((char)i);
}
}
}
}
}
/*
run:
!
"
#
%
&
'
(
)
*
,
-
.
/
:
;
?
@
[
\
]
_
{
}
*/