package com.javarush.task.pro.task04.task0403; import java.util.Scanner; /* Суммирование */ public class Solution { public static void main(String[] args) { Scanner a = new Scanner(System.in); int b = a.nextInt(); int c = a.nextInt(); int d = a.nextInt(); int f = a.nextInt(); int i = 0; while (i<=0) { System.out.println(b+c+d+f); i++; } //напишите тут ваш код } }