We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5d09bd + 5a2b414 commit b18c4f8Copy full SHA for b18c4f8
Program to print table of given number
@@ -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