How to resolve the algorithm A+B step by step in the Nanoquery programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm A+B step by step in the Nanoquery programming language
Table of Contents
Problem Statement
A+B ─── a classic problem in programming contests, it's given so contestants can gain familiarity with the online judging system being used.
Given two integers, A and B. Their sum needs to be calculated.
Two integers are written in the input stream, separated by space(s):
The required output is one integer: the sum of A and B.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm A+B step by step in the Nanoquery programming language
Source code in the nanoquery programming language
// get a line of input
line = input()
// split the line
strings = split(line, " ")
// add the two numbers and print the result
println int(strings[0]) + int(strings[1])
You may also check:How to resolve the algorithm Stack step by step in the VBA programming language
You may also check:How to resolve the algorithm Letter frequency step by step in the Erlang programming language
You may also check:How to resolve the algorithm Word frequency step by step in the Phixmonti programming language
You may also check:How to resolve the algorithm Check input device is a terminal step by step in the FutureBasic programming language
You may also check:How to resolve the algorithm Take notes on the command line step by step in the Icon and Unicon programming language