using System;
public class Test
{
public static void Main()
{
int result = AddNumbers(4, 4);
Console.WriteLine(result);
}
static int AddNumbers(int a, int b)
{
int total = a + b;
return total;
}
}
dXNpbmcgU3lzdGVtOwoKcHVibGljIGNsYXNzIFRlc3QKewoJcHVibGljIHN0YXRpYyB2b2lkIE1haW4oKQogICAgewogICAgICAgIGludCByZXN1bHQgPSBBZGROdW1iZXJzKDQsIDQpOwogICAgICAgIENvbnNvbGUuV3JpdGVMaW5lKHJlc3VsdCk7ICAKICAgIH0KCiAgICBzdGF0aWMgaW50IEFkZE51bWJlcnMoaW50IGEsIGludCBiKQogICAgewogICAgICAgIGludCB0b3RhbCA9IGEgKyBiOwogICAgICAgIHJldHVybiB0b3RhbDsKICAgIH0KCX0K