All TutorialsCoursesEvents & Contests
loading

Sign in to Track Your Progress

Module

Introduction to Operators Assignment

Introduction to Operators

Introduction to Operators Assignment

Modules

Sign in to Track Your Progress

Introduction to Operators Assignment

By Masai School

Updated on : 2 Feb 2023

Published on : 2 Feb 2023

Python: Division

Task
The provided code stub reads two integers, a and b, from STDIN.

Add logic to print two lines. The first line should contain the result of integer division, a // b. The second line should contain the result of float division, a / b.

No rounding or formatting is necessary.

Example
a = 3
b = 5
  • The result of the integer division 3 // 5 = 0.
  • The result of the float division is 3 / 5 = 0.6.
Print:
0
0.6
Input Format
The first line contains the first integer, a.
The second line contains the second integer, b.

Output Format
Print the two lines as described above.

Sample Input 0
4
3
Sample Output 0
1
1.33333333333

Editor

Python 3

Output

Arithmetic Operators

Task
The provided code stub reads two integers from STDIN, a and b. Add code to print three lines where:
  • The first line contains the sum of the two numbers.
  • The second line contains the difference of the two numbers (first - second).
  • The third line contains the product of the two numbers.
Example
a = 3
b = 5

Print the following:
8
-2
15
Input Format
The first line contains the first integer, a.
The second line contains the second integer, b.

Constraints
Group 103545.png
Output Format
Print the three lines as explained above.

Sample Input 0
3
2
Sample Output 0
5
1
6
Explanation 0
3 + 2 = 5
3 - 2 = 1
3 * 2 = 6

Editor

Python 3

Output

loading

Check Out Programs Offered By Masai

If you are currently studying in 1st, 2nd or pre-final year of college,

Connect with a growingcommunity of learners

Masai School

Get StartedJoin the Program