█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 6825

Problema 0x78 - Suma de 2 números

  • Autor: taopaipai
  • Fecha: 2022-12-12 16:36:04 UTC (Hace alrededor de 2 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.179 s 13 KBi
#2
Correcto
0.105 s 13 KBi
#3
Correcto
0.115 s 13 KBi
#4
Correcto
0.152 s 13 KBi
#5
Correcto
0.118 s 13 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

class Main {
    public static void main(String[] ars) {
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        System.out.println(a + b);
    }
}