Addition +

declare 2 variable first and sum it together:

	int a = 5;
	int b = 2;
	
	int c = a+b; 
	printf("%d + %d = %d\\n", a, b, c );
	//next line: /n 
	printf("therefore c is the same as %d", a+b );

to print % use %%