My issue
hel me
Learning course: Practice C
Problem Link: Rearrange Code Practice Problem in C - CodeChef
hel me
Learning course: Practice C
Problem Link: Rearrange Code Practice Problem in C - CodeChef
@bayramova
this will be the correct rearrangement
#include <stdio.h>
int main() {
int a,b,c;
scanf("%d", &a);
scanf("%d", &b);
c = a + b;
printf("%d", c);
return 0;
}