My issue
here i am not using for loop and executing the program with out for loop
My code
#include <stdio.h>
int main(void) {
int a,b;
scanf("%d %d",&a,&b);
int sum=a+b;
printf("%d",sum);
}
Problem Link: FLOW001 Problem - CodeChef
here i am not using for loop and executing the program with out for loop
#include <stdio.h>
int main(void) {
int a,b;
scanf("%d %d",&a,&b);
int sum=a+b;
printf("%d",sum);
}
Problem Link: FLOW001 Problem - CodeChef