Ubuntu Pastebin

Paste from urek at Sun, 11 Jun 2017 15:14:57 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>
#include <stdlib.h>

main()
{
   int num1,num2,somma;
	
   printf("inserisci num1");
   scanf("%d", &num1);
    
   printf("inserisci num2");
   scanf("%d", &num2);
          
   somma= num1 + num2;
          
          
   printf("num1 + num2 = %d\n", somma);
          
          
   return EXIT_SUCESS
}
          
          
Download as text