w3resource

Python: Compute the digit number of sum of two given integers

Python Basic - 1: Exercise-33 with Solution

Write a Python program to compute the digit number of the sum of two given integers.

Input:
Each test case consists of two non-negative integers x and y which are separated by a space in a line.
0 ≤ x, y ≤ 1,000,000

Pictorial Presentation:

Python: Compute the digit number of sum of two given integers

Sample Solution:

Python Code:

print("Input two integers(a b): ")
a,b = map(int,input().split(" "))
print("Number of digit of a and b.:")
print(len(str(a+b)))

Sample Output:

Input two integers(a b): 
 5 7
Number of digit of a and b.:
2

Flowchart:

Flowchart: Python - Compute the digit number of sum of two given integers

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a python program to find heights of the top three building in descending order from eight given buildings.
Next: Write a Python program to check whether three given lengths (integers) of three sides form a right triangle. Print "Yes" if the given sides form a right triangle otherwise print "No".

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.