{}
run-icon
main.c
#include <stdio.h> int main() { int a = 5; int b = 10; printf("%d", a + b); return 0; }
Output