My issue
Print 3 + 4
My code
#include <stdio.h>
void main()
{
int a=3,b=4;
scanf("%d%d",a,b);
print("%d",a);
if(b==4)
printf("%d",b);
printf("%d",a + b);
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone