Esempio n. 1
0
 public static void main() {
   int c = 0;
   for (int i = 0; i < 100; i++) {
     c = c + i;
   }
   Io.println(c);
 }