How can we read inputs as integers in Python?
Answers
Answered by
0
content = int(input())
print(content*2)
Input:- 2
Output:- 4
Similar questions