Lệnh range() #2

View as PDF



Problem types
Allowed languages
Pypy, Pypy 3, Python
Points: 100 (p) Time limit: 1.0s Memory limit: 256M Input: stdin Output: stdout

Viết chương trình nhập vào hai số nguyên dương \(m,n\), hãy in ra dãy số từ \([m,m+1,...,n-1]\).

Input

  • Hai số nguyên \(m, n\) \((1\le m\le n\le 100)\).

Output

  • In ra dãy số từ \([m,m+1,...,n-1]\) theo định dạng như ví dụ Output

Example

Test 1

Input
5 10
Output
[5, 6, 7, 8, 9] 

Comments

There are no comments at the moment.