blob: 53d31770332785de0894852f119f6be1369e2274 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import java.util.*;
public class Kvadrati {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
for (int i = a; i <= b; i++)
System.out.println(i*i);
}
}
|