#include <stdio.h> int main() { int a = 10; int b = 3; printf("Sum: %d\n", a + b); return 0; }
Click Run to execute this code.