Where ist my mistake ?
thank you !
package de.codegym.task.task04.task0435;
/*
Gerade Zahlen
*/
public class Solution {
public static void main(String[] args) throws Exception {
for(int i = 1;i<=100;i++){
System.out.println(i);
}
//schreib hier deinen Code
}
}