Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
34226 | lnx | [在线测评解答教程] A+B Problem | Java | Compile Error | 0 MS | 0 KB | 239 | 2023-12-17 14:42:29 |
import java.util.Scanner; public class main { public static void main(String[] args) { int a,b,c; Scanner scanf=new Scanner(System.in); a=scanf.nextInt(); b=scanf.nextInt(); c=a+b; System.out.printIn(c); } }