#include <stdio.h> int main() { int h,m; scanf("%d:%d",&n,&m); if(n>=12) { printf("%d:%d PM",n-12,m); } else { printf("%d:%d AM",n,m); } return 0; }