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

Envío 2712

Problema 0x78 - Suma de 2 números

  • Autor: sancanella
  • Fecha: 2021-02-02 20:35:01 UTC (Hace alrededor de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.182 s 13 KBi
#2
Correcto
0.176 s 16 KBi
#3
Correcto
0.193 s 12 KBi
#4
Correcto
0.18 s 12 KBi
#5
Correcto
0.183 s 16 KBi
Puntos totales: 100 / 100

Código

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner teclado = new Scanner(System.in);
        String[] entradas = teclado.nextLine().split(" ");
        System.out.println(Integer.parseInt(entradas[0])+ Integer.parseInt(entradas[1]));
    }
}