#pragma warning(disable:4996) //μ»΄νμΌλ¬ κ²½κ³ λΉνμ±ν
#include <stdio.h> //νμ€ λΌμ΄λΈλ¬λ¦¬ ν€λ ν¬ν¨ν¨
int main(){
int a, b;
char op;
printf("λμ μ λ§μ
(ex 10 + 20): ");
scanf("%d %c %d", &a, &op, &b); //μ
λ ₯ν λ μ€νμ΄μ€λ°λ‘ λμ΄μ°κΈ°
printf("%d %c %d = %d", a, op, b, a+b);
return 0;
}