[ create a new paste ] login | about

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

C, pasted on Mar 24:
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

int main(void) {
    int T, H, D;
    T = 8;
    H = 367;
    D = 100;
    int sum = T + H + D;
    printf("THE SUM KUMA IS: %d\n", sum);
    return 0;
}


Output:
1
THE SUM KUMA IS: 475


Create a new paste based on this one


Comments: