Tech > Coding Challenges > HackerRank > Prepare > Python > Introduction > Print function
Problem Link to the original HackerRank problem The included code stub will read an integer, n, from STDIN. Without using any string methods, try to print the following: 123...n Note that “...” represents the consecuvitve values in between. Example n = 5 Print the string 12345 Input Format The first line contains an integer n. Constraints 1 <= n <= 150 Output Formats 1 <= n <= 150 Input Format ...