answersLogoWhite

0

What is the sum of a and b?

Updated: 4/28/2022
User Avatar

Wiki User

15y ago

Best Answer

The answer of a + b. A and b are both variabls which means that you only add the a and b to get your answer. Lets say you had this problem a(7h+13) you would put 7ah+13a because a goes first in the alphabet and since 13 doesn't have a letter it would be 7ah+13a.

User Avatar

Diego Valdivia

Lvl 2
3y ago
This answer is:
User Avatar
User Avatar

Diego Valdivia

Lvl 1
3y ago
Thanks
User Avatar

Tejashri Bangar

Lvl 1
3y ago
Thanks 
User Avatar

WEATHERS AMARIAH

Lvl 1
2y ago
Hi i'm a 6th grade student and needed help thank you. Casey Middle School
User Avatar

Aakrit Dn hi bddj

Lvl 1
9mo ago
Thanks
More answers
User Avatar

Wiki User

15y ago

a+b

This answer is:
User Avatar
User Avatar

Diego Valdivia

Lvl 1
3y ago
This answer was not helpful read mine

User Avatar

Diego Valdivia

Lvl 2
3y ago

Do not waste your time to read or vote for peoplke that just put a + b

This answer is:
User Avatar

User Avatar

Radhakrishnan Sumath...

Lvl 2
2y ago

A + B

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

what is the sum of B ad 2

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

A+b

This answer is:
User Avatar
User Avatar

Anonymous

Lvl 1
3y ago
a + b

Add your answer:

Earn +20 pts
Q: What is the sum of a and b?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a c program that multiplies two numbers by repeated subtraction?

int mul (int a, int b) { int sum= 0; for (; b>0; --b) sum -= -a; for (; b<0; ++b) sum -= a; return sum; }


What is the sum Of?

The sum of is the total of everything being summed; the sum total. Thus the sum of a, b and c is therefore a + b + c.


How do you write the sum of b and 8?

The sum of b and 8 would be written b+8 or 8+b(commutative property of addition)


How do you Write a program in c to calculate the sum of two integers?

/*use "c-free" compiler*/ #include <stdio.h> main() { int a,b,c; printf("enter the value of a & b"); scanf("%d%d",&a,&b); c=a+b; printf("sum of the two numbers is a+b- %d",c); getch(); }


What is the answer of the sum of 3 and b?

(3+b)


What is the sum of b and 11?

b+11


What is the sum of b and 5?

(b+5)


What is the sum and difference of the same two terms?

Assuming that a and b are two non-negative numbers, then their sum is a + b and the difference is |a - b|.


Need a c program for a plus b plus whole square?

#include<iostream> int main() { std::cout << "Enter value a: "; double a; std::cin >> a; std::cout << "Enter value b: "; double b; std::cin >> b; double sum {a+b}; std::cout << "a + b + (a + b) * (a + b) = " << sum + sum * sum << std::endl; }


What is the sum ofThree times the sum of a and b increased by a?

3(a + b) + a = 3a + 3b + a = 4a + 3b


How do you input two numbers not using operation by multiplication by using addition?

I suppose you wanted to ask: how to do multiplication with repeated addition. int mul (int a, int b) { int sum= 0; int sign= 1; if (b<0) { sign= -1; b= -b;} for (; b; --b) sum = sum + a; return sign*sum; }


The sum of b and 11?

You remember that 'sum' means addition so that's b+11