import java.util.*;import java.lang.*;import java.io.*; class Square{ public static void main (String[] args) throws java.lang.Exception { int a = 5; //здесь задаем сторону int P = 4 * a; System.out.print("Периметр квадрата: " + P); }}