P3EXLV1 - Somma tra due numeri

no tags 

English

Given two integers, return the sum of the two.

N.B To read an integer from you can use the command x = int(input()).

Input

The input is composed of two integers distributed over the first two lines.

Output

The sum of the two numbers read.

Example

Input:
5
12

Output:
17

Italian

Dati due numeri interi, restituisci la somma tra i due.

N.B Per leggere un intero da puoi utilizzare il comando x = int(input()).

Input

L'input รจ composto da due interi distributi suelle due prime righe.

Output

La somma tra i due numeri letti.

Example

Input:
5
12

Output:
17

hide comments
sm_programmer: 2020-01-31 01:15:50

English:

Given two integers, compute their sum.

Hint: to read integers, use the command "x = int(input())".

Input:
Two integers, one per line.

Output:
One integer: the sum of the given numbers.

Last edit: 2020-01-31 01:16:02

Added by:giorgio.piccardo
Date:2019-03-05
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:NCSHARP JULIA PYPY3 PYTHON3