Input/Output for pairs of numbers: Difference between revisions

no edit summary
m (Thundergnat moved page Input/Output for Pairs of Numbers to Input/Output for pairs of numbers: Follow normal task title capitalization policy)
No edit summary
Line 19:
102
10</pre>
 
=={{header|11l}}==
{{trans|Python}}
 
<lang 11l>F do_stuff(a, b)
R a + b
 
V t = Int(input())
L 1..t
V (a, b) = input().split(‘ ’).map(Int)
print(do_stuff(a, b))</lang>
 
=={{header|ALGOL 68}}==
1,481

edits