Computer Science, asked by pavithrajanani888, 1 month ago

Operators - Python
Given two integers a and b, your task is to calculate:-
a+b
a- b
a*b
a//b​

Answers

Answered by tushant0430
2

Please write questions properly.

Anyhow,

a + b =Addition {In Python}

a - b =Subtraction {In Python}

a * b=Multiplication {In Python}

a//b = Division {In Python}

Remember they all are written in brackets ( ) without string value to perform operations.

Hope this helps you.

Similar questions