A+B Problem
Posted watchfree
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A+B Problem相关的知识,希望对你有一定的参考价值。
A+B Problem
Time Limit: 1000MS Memory Limit: 10000K
Description
Calculate a+b
Input
Two integer a,b (0<=a,b<=10)
Output
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc=new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); System.out.println(a+b); } }
Output a+b
Sample Input
1 2
Sample Output
3
以上是关于A+B Problem的主要内容,如果未能解决你的问题,请参考以下文章