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 |
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); } }