Guess the output if input is 3+4 4+5
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d %d", a,b);
return 0;
}
Answers
Answered by
1
Explanation:
Guess the output if input is 3+4 4+5
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d %d", a,b);
return 0;
}
Similar questions