#include <stdio.h>

void convert1(int t){
    int h,m;
    h=t/60;
    m=t-h*60;
    printf("%d min = %d h %d min.\n",t,h,m);
}