int addTwoInteger(int Integer1, int Integer2 ) 
{
    int a=Integer1+Integer2;
    return a;    
}