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

Envío 2421

Problema 0x78 - Suma de 2 números

  • Autor: wesly
  • Fecha: 2020-12-18 03:29:41 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.161 s 15 KBi
#2
Correcto
0.17 s 12 KBi
#3
Correcto
0.179 s 13 KBi
#4
Correcto
0.141 s 14 KBi
#5
Correcto
0.167 s 15 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

/**
 *
 * @author usuario
 */
public class Main {

    public static void main(String[] args) throws java.lang.Exception {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        System.out.println(a+b);

    }
}