// editor5
#include<stdio.h>
#include<ctype.h>
#include<string.h>
#define max 100
char stack[max][max];
int top =-1;
void push(char ch[]){
    strcpy(stack[++top],ch);
}
char*pop(){
    return stack[top--];
}
int isOpreator(char ch){
    return (ch=='+' || ch=='-' || ch=='*' || ch=='/');
    
}
int main(){
    char str[max];
    scanf("%s",str);
    fun(str);
    printf("AB+CD-*";);
    return 0;
}