/ Vijos / 题库 /

A+B Problem

A+B Problem

Background

Special for beginners, ^_^

Description

Given two integers x and y, print the sum.

Format

Input

Two integers x and y, satisfying 0 <= x, y <= 32767.

Output

One integer, the sum of x and y.

Sample 1

Input

1 1

Output

2

Limitation

1s, 16384KiB for each test case.

Hint

C Code

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

C++ Code

#include <iostream>
using namespace std;
int main()
{
    int a, b;
    cin >> a >> b;
    cout << a + b << endl;
    return 0;
}

信息

ID
1000
难度
1
分类
(无)
标签
(无)
递交数
19
已通过
9
通过率
47%
上传者

相关

在下列比赛中:

test