My issue
Not able to solve the problem or have some other doubt? Ask our community.
My code
#include <stdio.h>
int main() {
int l,b,area;
printf(" enter l,b values");
scanf("%d,%d" , &l,&b);
area = l + b;
printf("%d,area");
}
Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC02/problems/CLB009