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

Envío 7300

Problema 0x78 - Suma de 2 números

  • Autor: manuel claros
  • Fecha: 2024-05-14 16:41:54 UTC (Hace 4 meses)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.061 s 16 KBi
#2
Correcto
0.061 s 15 KBi
#3
Correcto
0.067 s 15 KBi
#4
Correcto
0.065 s 15 KBi
#5
Correcto
0.064 s 15 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

public class Main{
    public static void main(String[] args) {
 Scanner SC = new Scanner(System.in);

int a = SC.nextInt();
int b = SC.nextInt();

System.out.print(a+b);



}}