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

Envío 1091

Problema 0x78 - Suma de 2 números

  • Autor: Felipe
  • Fecha: 2020-10-09 23:46:52 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.168 s 13 KBi
#2
Correcto
0.143 s 13 KBi
#3
Correcto
0.147 s 13 KBi
#4
Correcto
0.158 s 13 KBi
#5
Correcto
0.152 s 13 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;
public class Main {
  public static void main(String args[]) {
	Scanner scan = new Scanner(System.in);
	long a = scan.nextLong();
	long b = scan.nextLong();
	System.out.print(a+b);
  }
}