9 lines
114 B
C
9 lines
114 B
C
#include<stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int a,b,sum;
|
|
a = 5;
|
|
b = 4;
|
|
sum = a + b;
|
|
} |