sum of 2 numbers

int a,b;
cin>>a>>b;

int sum = a+b;
return sum;