Lệnh range() #2

View as PDF



Author:
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


  • 1
    minhquannguyenphuc2013    9:21 p.m. 8 nov, 2024

    Code Python

    m,n=map(int,input().split())
    d=list(range(m,n))
    print(f"[{', '.join(map(str,d))}]")