Seqüència de nombres senars
Submit solution
Points:
10
Time limit:
5.0s
Memory limit:
256M
Author:
Problem types
Allowed languages
C#, Go, Java, Python
Escriu un programa que escrigui la seqüència de \(N\) nombres senars començant per \(I\) (inclosos).
Input Format
L'entrada consisteix en dos nombres enters, \(I\) i \(N\) separats per un espai en blanc.
Constraints
- \(I > 0\)
- \(N > 0\)
Output Format
S'imprimirà la seqüència de \(N\) nombres senars començant per \(I\) (inclosos) fent servir un espai com a separador.
Sample Input 0
1 5
Sample Output 0
1 3 5 7 9
Sample Input 1
1 3
Sample Output 1
1 3 5
Sample Input 2
2 3
Sample Output 2
3 5 7
Sample Input 3
7 1
Sample Output 3
7
Sample Input 4
8 1
Sample Output 4
9