Problem D
Telja
                                                                Languages
                        
                            
                                                                    en
                                                                    is
                                                            
                        
                                                                
  Emil is having trouble counting from $1$ to $n$. He knows that the first number is $1$ but after that he’s completely lost. Can you help Emil count?
Input
The first and only line contains a single integer $n$.
Output
Output $n$ lines in total where the first line contains the number $1$, the second the number $2$ and so on until the last line that should contain the number $n$.
Scoring
| 
           Group  | 
        
           Points  | 
        
           Constraints  | 
      
| 
           1  | 
        
           50  | 
        
           $1 \leq n \leq 5$  | 
      
| 
           2  | 
        
           50  | 
        
           $6 \leq n \leq 100000$  | 
      
| Sample Input 1 | Sample Output 1 | 
|---|---|
          2  | 
        
          1 2  | 
      
| Sample Input 2 | Sample Output 2 | 
|---|---|
          3  | 
        
          1 2 3  | 
      
| Sample Input 3 | Sample Output 3 | 
|---|---|
          5  | 
        
          1 2 3 4 5  | 
      
