[ create a new paste ] login | about

Link: http://codepad.org/srSesVai    [ raw code | output | fork ]

C, pasted on Mar 24:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
int main(void){
int T;
int H;
int D;
T=8;
H=367;
D=100;
int sum=T+H+D;
printf("THE SUM KUMA IS;%d", sum);
return 0;
}


Output:
1
THE SUM KUMA IS;475


Create a new paste based on this one


Comments: