diff --git a/exercises/somma.py b/exercises/somma.py
new file mode 100644
index 0000000..b1ef3bb
--- /dev/null
+++ b/exercises/somma.py
@@ -0,0 +1,16 @@
+""""""""""""""""
+  Write a program that takes as input two numbers and print the sum.
+
+  Output:
+  Insert the first number: 1
+  Insert the second number: 2
+  Sum: 3
+
+"""""""""""""""
+
+a = input("inserisci il primo numero: ")
+b = input("Inserisci il secondo numero: ")
+
+sum = int(a) + int(b)
+
+print("La somma รจ", sum)
\ No newline at end of file