How to add two numbers without using arithmetic operators?
int sum(int num1,int num2) { for(int i=0;i<num2;i++) num1++; return num1; }