Skip to content

Commit b18c4f8

Browse files
Merge pull request #422 from imritik18/master
Create Program to print table of given number
2 parents f5d09bd + 5a2b414 commit b18c4f8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
n=int(input("Enter the number to print the tables for:"))
2+
for i in range(1,11):
3+
print(n,"x",i,"=",n*i)

0 commit comments

Comments
 (0)