#!/bin/bash

awk -F':' '{
    for(i=NF;i>1;i--){
        printf "%s:",$i
    }
    print $1
}' nowcoder.txt