Simple adder

Created by Julien Palard

Write a program that print the result of simple addition.

Warning

You should work on this exercise with your own installation of Python, on your computer. Learn how for Mac OSX or Windows.

If no parameters are given, you must print the following error message:

usage: python3 solution.py OP1 OP2

Example

$ python solution.py 1 2
3
$ python solution.py 2 3
5
$ python solution.py
usage: python3 solution.py OP1 OP2
$

Hints

To get the parameters given from the command line, you'll need sys.argv.

There's no corrections yet, hit the `Submit` button to send your code to the correction bot.

Keyboard shortcuts:

  • Ctrl-Enter: Send your code to the correction bot.
  • Escape: Get back to the instructions tab.

See solutions