using System;
public class Program
{
public static void Main()
int a, b, c;
a = 3;
b = 2;
c = 4;
int wowExp = (a + b) * c;
//Print Value
Console.WriteLine(wowExp); // 20
}