Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int a = Integer.parseInt(scanner.nextLine());
- int b = Integer.parseInt(scanner.nextLine());
- int c = Integer.parseInt(scanner.nextLine());
- int d = Integer.parseInt(scanner.nextLine());
- int x = (a + b) / c * d;
- System.out.println(x);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment