[Challenge] what the following program written in c does?
```c
#include <stdio.h>
int main() {
int num1, num2, sum;
printf("Please enter tow integers: ");
scanf("%d %d", &num1, &num2);
sum = num1+num2;
printf("%d %d = %d", num1, num2, sum);
return 0;
}
```
leave your answer in the comments.
@Awschult your answer is right! i've noticed that more and more hobbyists are becoming interested in the C language.
Given two integers, provided by the user, the program prints the sum of the integers back to the user.Also, you have a typo in the print