| Hosted by CoCalc | Download
1
#include<stdio.h>
2
int main(void) {
3
int n = 5, int m = 10;
4
printf("Hello world: %d\n", n+m);
5
}
6