#include <stdio.h>   
int main() {
    int a=22;
    int b=18;
    printf("%d\n",++a);
    printf("%d\n",b++);
    printf("%d".++b);
}
//operands