ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1891. Language Ocean

What's test 14?
Posted by xiaohao() 4 Dec 2011 14:36
What's test 14?
Re: What's test 14?
Posted by paladin8 18 Dec 2011 00:33
Try something like:

3
a() : real
a(real) : int
a(int) : real
3
auto b = a()
int c = a(b)
auto d = a(c)

Output should be:

b : real
d : real