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

Envío 953

Problema 0x78 - Suma de 2 números

  • Autor: aebernalmunoz
  • Fecha: 2020-10-04 22:28:46 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.097 s 11 KBi
#2
Correcto
0.085 s 10 KBi
#3
Correcto
0.099 s 11 KBi
#4
Correcto
0.082 s 11 KBi
#5
Correcto
0.096 s 11 KBi
Puntos totales: 100 / 100

Código

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st;
		st = new StringTokenizer(br.readLine());
		System.out.println(Long.parseLong(st.nextToken()) + Long.parseLong(st.nextToken()));

	}
}