#include <iostream>
using namespace std;
int main() {
int i;
i++; //증가 연산자
i--; //감소 연산자
}
#include <iostream>
using namespace std;
int main() {
//증가 연산자, 감소 연산자
int a = 10;
int b = 10;
cout << a << b << endl;
cout << a++ << endl; //출력한 뒤 증가
cout << ++b << endl; //출력하기 전 증가
}
#include <iostream>
using namespace std;
int main() {
/* 관계표현식
< : 작다
<= : 작거나 같다
> : 크다
>= 크거나 같다
== : 같다
!= 같지 않다
*/
}