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-10-12 11:22:42
#include <iostream>
using namespace std;

int main() {
int s,ms;
cin>>s;
ms=s/60+s%60;
cout<<ms;

return 0;
}
huul
2020-08-05 03:35:44
aaaaa im ded
2020-07-26 08:53:10
bba
2020-01-29 07:20:28
python deer bodoj chadah tuslah hun bnuuu
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);

}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.