Menu
Coddy logo textTech

Recap - Till 120

Part of the Fundamentals section of Coddy's C# journey — lesson 35 of 69.

challenge icon

Challenge

Beginner

Write a program that gets the user's age as input.

The program will output (print) the number of missing years till 120 (in a specific format, shown below).

For example, for input 25, the expected output is "95 years till 120".

Make sure to not print anything else!

Try it yourself

using System;

public class Program {
    public static void Main(string[] args) {
        // Write your code below

    }
}

All lessons in Fundamentals