#include #define rep(i,n)for(int i=0;i<(n);i++) using namespace std; int main(){ int a,b;cin>>a>>b; string s;cin>>s; string t=s.substr(4); double d=stod(t); int tim=a*60+b; tim+=1440; tim-=60*9; tim%=1440; if(s[3]=='+'){ int q=tim+d*60; q%=1440; printf("%02d:%02d\n",q/60,q%60); } else{ int q=tim+1440-d*60; q%=1440; printf("%02d:%02d\n",q/60,q%60); } }