Click here to Skip to main content
15,886,725 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Input Description:
First-line indicates two integers which are the size of array and 'K' value. Second-line indicates an integer contains elements of an array.

Output Description:
Print the taken input in the same format.

Sample Input :
5 3
1 2 3 4 5
Sample Output :
5 3
1 2 3 4 5

What I have tried:

didnt understand how to solve the question..
not have knoweldge of array
Posted
Updated 11-Feb-23 23:43pm

 
Share this answer
 
var num=userInput[0];
var num1=userInput[1];
console.log(num);
console.log(num1);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900