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
2020-01-23 05:11:31
#include <cstdio>
int main()
{
int a , b , c;
scanf("%d",&a);
b = a/60;
c = a%60;
printf("%d %d",b ,c);
}
2019-12-16 09:56:41
is there anyone kind enough to leave the solutions
2019-10-28 08:20:03
i love
2019-10-26 06:28:26
#include <cstdio>
int main()
{
int a , b , c;
scanf("%d",&a);
b = a/60;
c = a%60;
printf("%d %d",b ,c);
}
SUPER
2019-10-22 13:22:17
#include<stdio.h>
int main(void) {
int a,Q,W;
scanf("%d",&a);
Q=a/60;
W=a%60;
printf("%d %d",Q,W);

return 0;
}
2019-10-03 13:33:09
#include <cstdio>


int main() {
int a,b,c,d;
scanf("%d",&a);
b = a/60;
c = b*60;
d = a-c;
printf("%d %d",b,d);

}
2019-09-20 14:45:08
my brain :((
2019-04-02 08:29:00
#include<bits/stdc++.h>
main()
{
int a,b,c;
scanf("%d",&a);
b=a/60;
c=a%60;
printf("%d %d",b,c);
}
2019-03-27 04:13:38
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c,d,e,r,t,y,u,i,p;
scanf("%d",&a);
b=a/60;
c=a%60;
printf("%d %d",b,c);
}
2019-03-13 07:55:07
yah ve
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.