You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/templates/partials/problem_default.md

100 lines
1.2 KiB
Markdown

# 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
```
123 500
```
## Output
```
623
```
# Limitation
1s, 1024KiB for each test case.
# Hint
## Free Pascal Code
```pascal
var a,b:longint;
begin
readln(a,b);
writeln(a+b);
end.
```
## C Code
```c
#include <stdio.h>
int main(void)
{
int a, b;
scanf("%d%d", &a, &b);
printf("%d\n", a + b);
return 0;
}
```
## C++ Code
```cpp
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}
```
## Python Code
```python
a, b = [int(i) for i in raw_input().split()]
print(a + b)
```
## Java Code
```java
import java.io.*;
import java.util.Scanner;
public class Main {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a + b);
}
}
```
# Source
**Vijos Original**