CBSE Class 11 Informatics Practices
Question 49 of 52
Python Programming Fundamentals — Question 49
Back to all questionsn
=
int
(
input
(
"Enter number: "
))
print
(
"First five multiples of"
,
n
,
"are"
)
print
(
n
,
n
*
2
,
n
*
3
,
n
*
4
,
n
*
5
)
Output
Enter number: 5
First five multiples of 5 are
5 10 15 20 25