#include <stdio.h>
int main(){
    char a,b;
    int i,j;
    scanf("%c=%d,%c=%d",&a,&i,&b,&j);
    printf("%c=%d,%c=%d",a,j,b,i);
    return 0;
}