Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7011 - Минут секунд

Өгөгдсөн секундыг минут секунд болго.

Input

Секунд Int тоон утгаар өгөгдөнө.

Output

Минут секундыг зайгаар тусгаарлан хэвлэ.

Example

Input:
200

Output:
3 20

Нэмсэн:Bataa
Огноо:2011-05-13
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2015-03-24 07:24:33
hh
2015-03-03 04:38:47 ♫♪BBS♪♫


Last edit: 2015-03-03 04:39:59
2015-01-29 13:58:05 bakhitbek
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{

int a,b,c;
scanf("%i",&a);
b=a/60;
c=a%60;
printf("%i %i",b,c);
getch();
return 0;
}
2015-01-13 06:57:36 Temuulen



Last edit: 2015-01-13 06:58:15
2014-11-27 07:51:37 HatE
uuganbayr ongiro llr we
2014-03-10 12:41:04 uuganbayar
ishhh iim yum bodoj chadahguui yaanadaa
2014-03-01 07:33:14 TaMuPaa
yoo bodoj chaddagvie :P
2014-01-20 12:31:24 TeraReader
#include<stdio.h>
main()
{
int a,b,c,d;
scanf("%d",&a);
b=a%3600/60;
c=a%3600%60%60;
d=a/3600;
printf("%d %d %d",d,b,c);
return 0;
}
2014-01-20 12:31:03 TeraReader
#include<stdio.h>
main()
{
int a,b,c,d;
scanf("%d",&a);
b=a%3600/60;
c=a%3600%60%60;
d=a/3600;
printf("%d %d %d",d,b,c);
return 0;
}
2014-01-19 03:35:08 ymjir
#include<stdio.h>
#include<stdlib.h>
main()
{
int a;
scanf("%d",&a) ;
printf("%d %d" ,a/60,a-a/60*60) ;
system("pause");
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.