15
1
using System;
2
3
public class Program
4
{
5
static void test(int x, int y, int z)
6
{
7
Console.WriteLine( 20*x + 3*y - 11*z );
8
// 20x + 3y - 11z
9
}
10
11
public void Main(string[] args)
12
{
13
test(25, 10, 5);
14
}
15
}
Cached Result