n = int(input(Enter an integer:)) # Error 1
for i in range(1, 11):
m = n * j # Error 2
print(m; End = '') # Error 3Error 1 — The quotes around the input message are missing.
Error 2 — The for loop body lacks proper indentation, and the loop variable should be 'i' instead of 'j'.
Error 3 — In Python, a comma (,) is used to separate arguments not semicolon (;), and the first letter of end in the print() function should be lowercase.
The corrected code is :
n = int(input("Enter an integer:"))
for i in range(1, 11):
m = n * i
print(m, end = ' ')