Skip to content

Latest commit

 

History

History
39 lines (21 loc) · 572 Bytes

README.md

File metadata and controls

39 lines (21 loc) · 572 Bytes

author : Senuri Fernando

Task

The included code stub will read an integer, , from STDIN.

Without using any string methods, try to print the following: 123....n

Note that "..." represents the consecutive values in between.

question link

https://www.hackerrank.com/challenges/python-print/problem

Example

n=5 Print the string 12345 .

Input Format

The first line contains an integer n.

Constraints

1<= n <=150

Output Format

Print the list of integers from 1 through n as a string, without spaces.

Sample Input

3

Sample Output

123