POJ 1000 A+B Problem

来源:互联网 发布:teamview linux无桌面 编辑:程序博客网 时间:2024/05/18 00:20
A+B Problem
Time Limit: 1000MS Memory Limit: 10000KTotal Submissions: 382869 Accepted: 214081

Description

Calculate a+b

Input

Two integer a,b (0<=a,b<=10)

Output

Output a+b

Sample Input

1 2

Sample Output

3
#include <stdio.h>int main(){    int a,b;    scanf("%d %d",&a, &b);    printf("%d\n",a+b);    return 0;}


1 0
原创粉丝点击