diff --git a/CodeForces/Sheet #2 (Loops)/A.1 to N/Solution.java b/CodeForces/Sheet #2 (Loops)/A.1 to N/Solution.java new file mode 100644 index 0000000..1fcea43 --- /dev/null +++ b/CodeForces/Sheet #2 (Loops)/A.1 to N/Solution.java @@ -0,0 +1,16 @@ +import java.util.Scanner; + +/** + * Solution + */ +public class Solution { + + public static void main(String[] args) { + Scanner scanner=new Scanner(System.in); + int iterateNumber=scanner.nextInt(); + for (int i = 1; i <= iterateNumber; i++) { + System.out.println(i); + + } + } +} \ No newline at end of file