Advertisement
Jorell_Ramos_Sinaga

Untitled

Dec 19th, 2021
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. N = int (input())
  2.  
  3. while N not in range(2,10001):
  4. N = int (input())
  5.  
  6. i = 1;
  7.  
  8. while i <=10:
  9. tabuada = i * N
  10. print(i,'x',N,'=',tabuada)
  11. i+=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement