반응형

C언어

#include <stdio.h>
 
int main() {
    int first, second;
    scanf("%d %d"&first, &second);
 
    int a = (first+second) / 2;
    int b = (first-second) / 2;
    
    printf("%d\n%d\n", a, b);
    return 0;
}
r
반응형

+ Recent posts