Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 416 Bytes

File metadata and controls

15 lines (9 loc) · 416 Bytes

Codeassess

Example code to write a program that takes two integers as input (one per line) and prints their sum as output. For example,

For the input provided as follows:

2
3

The output of the program will be:

5

NOTE: Some exercises gives multiple inputs in one line separated by spaces you need to read the line and split the values
NOTE 2: All prints to console are considered part of the output