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

Envío 2380

Problema 0x78 - Suma de 2 números

  • Autor: Camilo15
  • Fecha: 2020-12-15 05:18:58 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.137 s 12 KBi
#2
Correcto
0.167 s 33 KBi
#3
Correcto
0.136 s 21 KBi
#4
Correcto
0.139 s 19 KBi
#5
Correcto
0.19 s 16 KBi
Puntos totales: 100 / 100

Código

import java.util.*;

/**
 * Write a description of class Main here.
 *
 * @author (your name)
 * @version (a version number or a date)
 */
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);

    }
}