using System;
public class Program
{
public static void Main()
int a;
int b;
a = -10;
b = 5;
if ( a > 0 )
a = a + b;
a = a * b;
}
a = a - 2;