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
2016-10-14 03:40:52
yasan
2016-10-14 03:40:44
erguu llagaa

2016-10-14 03:40:34
go b go b rush b fuck no stop
2016-10-14 03:39:50
zl2
2016-03-05 07:02:30 lhagvasuren
#include<stdio.h>
#include<stdlib.h>
int main()
{
int a,b,c,d;
scanf("%d",&a);
b=(a%3600)/60;
c=a%3600%60;
d=a/3600;
printf("%d %d %d",d,b,c);
system("pause");
return 0;
}
2015-09-17 03:23:33
#include<stdio.h>

main()
{
int a,b,c;
scanf("%d",&a);

b=a/60;
c=a%60;

printf("%d\t%d",b,c);

}
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
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.