15 lines
258 B
C#
15 lines
258 B
C#
|
namespace Cisla
|
|||
|
{
|
|||
|
internal class Program
|
|||
|
{
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
int result = 0;
|
|||
|
|
|||
|
result = (5 + 6) * 2;
|
|||
|
|
|||
|
Console.WriteLine(result);
|
|||
|
Console.ReadLine();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|