2025-05-12 22:17:12 +09:00

8 lines
120 B
C
Executable File

#include <stdio.h>
int main() {
long int a, b, c;
scanf("%ld %ld %ld",&a, &b, &c);
printf("%ld",a+b+c);
return 0;
}