A+B: Difference between revisions

5 bytes added ,  14 years ago
Task description formatting & slight wording changes that don't affect the goal of the task.
(Added Unix Shell solution, using bash)
(Task description formatting & slight wording changes that don't affect the goal of the task.)
Line 4:
A+B is one of few problems on contests, which traditionally lacks fabula.
 
== '''Problem statement =='''<br>
Given 2 integer numbers, A and B. One needs to find their sum.
 
=== :'''Input data ==='''<br>
In input stream, two:Two integer numbers are written in the input stream, separated by space.
:<math>(-1000 \le A,B \le +1000)</math>
=== Output data ===
In output, should be one integer be written: sum of A and B.
 
=== :'''Output data ==='''<br>
=== Example ===
In:The required output, should beis one integer be written: the sum of A and B.
{|class="standard"
 
:'''Example:'''<br>
::{|class="standard"
! Input
! Output
Line 25 ⟶ 26:
|}
 
 
= Solutions =
=={{header|Ada}}==
<lang Ada>-- Standard I/O Streams
Anonymous user