URI Online Judge | 1003 Simple Sum
Problem Link : 1003 Simple Sum
Solution :
Develop by Samsus Salehin Sabbir
Solution :
Develop by Samsus Salehin Sabbir
- #include <stdio.h>
- int main(void) {
- int a,b,SOMA;
- scanf("%d %d",&a,&b);
- SOMA=a+b;
- printf("SOMA = %d\n",SOMA);
- return 0;
- }
No comments