Write a program using WHILE loop in Python to print the first 20 natural numbers.
Answers
Answered by
0
Answer:
12345678912345678912
Answered by
1
Answer:
can I write in java
Explanation:
if java then
public class Natural{
public static void main(){
for(int I=1; I<=20;I++){
System. out. println (I);
}
}
}
Similar questions