Monday, January 4, 2021

Simple Interest in C# Using Windows Form

 A program that will compute the simple interest of a loan using C# programming language which uses Windows Form as its user interface.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.






Program Listing


using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;


namespace Simple_Interest

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }


        private void button1_Click(object sender, EventArgs e)

        {

            double amount, interest, time;


            double simple_interest;


            

            amount = Convert.ToDouble(textBox1.Text);


            interest = Convert.ToDouble(textBox2.Text);


            time = Convert.ToDouble(textBox2.Text);


            simple_interest = amount * interest * time / 100;


            textBox4.Text = simple_interest.ToString("0.00");


        }


        private void button2_Click(object sender, EventArgs e)

        {

            textBox1.Text = "";


            textBox2.Text = "";


            textBox3.Text = "";


            textBox4.Text = "";


            textBox1.Focus();

        }


        private void button3_Click(object sender, EventArgs e)

        {

            this.Close();

        }

    }

}


Sunday, January 3, 2021

Addition of Two Numbers Using C in Ubuntu Linux

Addition of Two Numbers Using C in Ubuntu Linux

 A simple program to ask the user to give two numbers and then it will solve the sum of two numbers using C programming language in Ubuntu Linux.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing

#include <stdio.h>

int main()

{

  int x=0, y=0, sum=0;

  printf("\n");

  printf("Addition of Two Numbers Using C in Ubuntu Linux");

  printf("\n\n");

  printf("\tGive Two Numbers : ");

  scanf("%d%d", &x, &y);

  sum = x + y;

  printf("\n");

  printf("\tSum of %d and %d is %d.",x,y,sum);

  printf("\n\n");

  return 0;

}

Saturday, January 2, 2021

Cube a Number in Java

Cube a Number in Java

 Machine Problem in Java

Write a program to ask the user to give a number and then the program will compute the cube value of the given number by the user.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing

/**
Machine Problem in Java

Write a program to ask the user to give a number and then the 
program will compute the cube value of the given number by
the user.

 @author Jake Rodriguez Pomperada,MAED-IT, MIT
 www.jakerpomperada.com / www.jakerpomperada.blogspot.com
 jakerpomperada@gmail.com
 Bacolod City, Negros Occidental Philippines
 January 2, 2021 Friday  5:48 PM
*/

import java.util.*;

public class Cube_Number {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc=new Scanner(System.in);
     int num=0;
     
     System.out.println();  
    System.out.println("\tCube a Number in Java");
    System.out.println();
  
     System.out.print("\tGive a Number : ");
     num=sc.nextInt();
  
     System.out.println();
    System.out.println("\tSquare of "+ num + " is "+ Math.pow(num, 3));
     System.out.println();
     System.out.println("\tEnd of Program");
     System.out.println("\n");

}
}

Square a Number in Java

Square a Number in Java

Machine Problem in Java

Write a program to ask the user to give a number and then the program will compute the square value of the given number by the user.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




 Program Listing

/**

Machine Problem in Java


Write a program to ask the user to give a number and then the 

program will compute the square value of the given number by

the user.


 @author Jake Rodriguez Pomperada,MAED-IT, MIT

 www.jakerpomperada.com / www.jakerpomperada.blogspot.com

 jakerpomperada@gmail.com

 Bacolod City, Negros Occidental Philippines

 January 2, 2021 Friday  2:44 PM

*/


import java.util.*;


public class Square_Number {


public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner sc=new Scanner(System.in);

        int num=0;

        

        System.out.println();  

    System.out.println("\tSquare a Number in Java");

    System.out.println();

     

        System.out.print("\tGive a Number : ");

        num=sc.nextInt();

     

        System.out.println();

    System.out.println("\tSquare of "+ num + " is "+ Math.pow(num, 2));

        System.out.println();

        System.out.println("\tEnd of Program");

        System.out.println("\n");

}


}


Thursday, December 31, 2020

Compound Interest in VB NET

Compound Interest in VB.NET

 A simple program that I wrote that shows how to compute compound interest using Microsoft Visual Basic NET.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing


Public Class Form1


    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

        End

    End Sub


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim a, b, c As Double

        Dim total, interest, amount As Double

        Dim compound_interest As Double

        a = Val(TextBox1.Text)

        b = Val(TextBox2.Text)

        c = Val(TextBox3.Text)

        total = a * b * c

        interest = total / 100

        amount = a * Math.Pow((1 + b / 100), c)

        compound_interest = amount - a

        TextBox4.Text = FormatCurrency(compound_interest)

    End Sub


    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

        TextBox1.Text = ""

        TextBox2.Text = ""

        TextBox3.Text = ""

        TextBox4.Text = ""

        TextBox1.Focus()

    End Sub

End Class


Simple Interest in VB.NET

 A simple interest program that I wrote using Microsoft VB.NET.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing


Public Class Form1


    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

        End

    End Sub


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim a, b, c As Double

        Dim total As Double

        Dim simple_interest As Double

        a = Val(TextBox1.Text)

        b = Val(TextBox2.Text)

        c = Val(TextBox3.Text)

        total = a * b * c

        simple_interest = total / 100

        TextBox4.Text = FormatCurrency(simple_interest)

    End Sub


    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

        TextBox1.Text = ""

        TextBox2.Text = ""

        TextBox3.Text = ""

          TextBox4.Text = ""

        TextBox1.Focus()

    End Sub

End Class


Tuesday, December 29, 2020

Compound Interest in C++

Compound Interest in C++

 Machine Problem in C++

Write a C++ program to input principal amount, time and rate  (P, T, R) from user and find compound interest of a loan.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing

/* compound_interest.cpp

Machine Problem in C++

Write a C++ program to input principal amount, time and rate 
(P, T, R) from user and find compound interest of a loan.

Mr. Jake Rodriguez Pomperada, MAED-IT, MIT
www.jakerpomperada.com
www.jakerpomperada.blogspot.com
jakerpomperada@gmail.com
Bacolod City, Negros Occidental Philippines
*/

#include <iostream>
#include <iomanip>
#include <stdlib.h>
#include <cmath>

int main()
{
    double principal_amount=0.00, time=0.00, rate=0.00,amount=0.00;
    double compound_interest=0.00;
    
    std::cout <<"\n\n";
    std::cout <<"\tCompound Interest in C++";
    std::cout <<"\n\n";
    std::cout <<"\tGive Principal Amount     : ";
    std::cin >> principal_amount;
    
    std::cout <<"\n";
    std::cout <<"\tGive Time Duration        : ";
    std::cin >>time;
    std::cout <<"\n";
    std::cout <<"\tGive Annual Interest Rate : ";
    std::cin >>rate;

    // Calculate compound  interest 
     amount=principal_amount*pow((1 +rate/100),time);
 
     compound_interest=amount-principal_amount;

    std::cout <<"\n";
    std::cout << std::setprecision(2); 
    std::cout << std::fixed;
    std::cout <<"\tThe Compound Interest is $ "
     <<compound_interest;
    std::cout <<"\n\n";
    system("pause");
    
}


Monday, December 28, 2020

Compound Interest in C

Instructional Technology

Compound Interest in C

 Machine Problem in C

Write a C program to input principal amount, time and rate  (P, T, R) from user and find compound interest of a loan.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing


/* compound_interest.c


Machine Problem in C


Write a C program to input principal amount, time and rate 

(P, T, R) from user and find compound interest of a loan.


Mr. Jake Rodriguez Pomperada, MAED-IT, MIT

www.jakerpomperada.com

www.jakerpomperada.blogspot.com

jakerpomperada@gmail.com

Bacolod City, Negros Occidental Philippies

*/


#include <stdio.h>

#include <stdlib.h>

#include <math.h>


int main()

{

    double principal_amount=0.00, time=0.00, rate=0.00,amount=0.00;

    double compound_interest=0.00;

    

    printf("\n\n");

    printf("\tCompound Interest in C");

    printf("\n\n");

    printf("\tGive Principal Amount     : ");

    scanf("%lf", &principal_amount);

    

    printf("\n");

    printf("\tGive Time Duration        : ");

    scanf("%lf", &time);

    printf("\n");

    printf("\tGive Annual Interest Rate : ");

    scanf("%lf", &rate);


    /* Calculate compound  interest */

     amount=principal_amount*pow((1 +rate/100),time);

 

     compound_interest=amount-principal_amount;


    printf("\n");

    printf("\tThe Compound Interest is $ %2.2lf",compound_interest);

    printf("\n\n");

    system("pause");

    

}




Sunday, December 27, 2020

Simple Interest in C

Simple Loan Interest in C

 Machine Problem in C

Write a C program to input principal amount, time and rate  (P, T, R) from user and find simple interest of a loan.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing

/* simple_interest.c Machine Problem in C Write a C program to input principal amount, time and rate (P, T, R) from user and find simple interest of a loan. Mr. Jake Rodriguez Pomperada, MAED-IT, MIT www.jakerpomperada.com www.jakerpomperada.blogspot.com jakerpomperada@gmail.com Bacolod City, Negros Occidental Philippies */ #include <stdio.h> #include <stdlib.h> int main() { double principal_amount=0.00, time=0.00, rate=0.00; double simple_interest = 0.00; printf("\n\n"); printf("\tSimple Loan Interest in C"); printf("\n\n"); printf("\tGive Principal Amount : "); scanf("%lf", &principal_amount); printf("\n"); printf("\tGive Time Duration : "); scanf("%lf", &time); printf("\n"); printf("\tGive Annual Interest Rate : "); scanf("%lf", &rate); /* Calculate simple interest */ simple_interest = (principal_amount * time * rate) / 100; printf("\n"); printf("\tThe Simple Interest is $ %2.2lf",simple_interest); printf("\n\n"); system("pause"); }

Friday, December 25, 2020

One Dimensional Array in C

One Dimensional Array in C

 A simple program to demonstrate how to declare and display the list of values in one dimensional array using C programming language.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing

#include <stdio.h>



int main(){

  

  int a[5] = {10,20,30,40,50};

  

  int b=0;

  

  printf("\n\n");

  printf("\tOne Dimensional Array in C");

  printf("\n\n");

  printf("\t");

  for (b=0; b<5; b++) {

 

  printf("%4d",b[a]);

  }

  printf("\n\n\n");

  printf("\tEnd of Program");

  printf("\n");

}


Grade Solver in Flowgorithm

Grade Solver in Flowgorithm

Qualified To Vote Using Flowgorithm

Thursday, December 24, 2020

Hello World in Python Using PyCharm

Hello World in Python Using PyCharm

 I simple tutorial on how to write a hello world program using Python using PyCharm.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing

# Hello_World.py # Mr. Jake Rodriguez POmperada, MAED-IT, MIT # www.jakerpomperada.com # www.jakerpomperada.blogspot.com # jakerpomperada@gmail.com # Bacolod City, Negros Occidental Philippines print("\tHello World.") print() print("\tWelcome To Python Programming") print() print("\tLearning Python is Fun.")

Wednesday, December 23, 2020

Methods in Java

 

Machine Problem

Write a program that will show how to declare and use methods in Java programming language.

am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing


/**

Machine Problem in Java


Write a program that will show how to declare and use

methods in Java programming language.


 @author Jake Rodriguez Pomperada,MAED-IT, MIT

 www.jakerpomperada.com / www.jakerpomperada.blogspot.com

 jakerpomperada@gmail.com

 Bacolod City, Negros Occidental Philippines

 December 23, 2020   Wednesday

*/

public class Methods {


  // create a method

  public int Addition(int a, int b) {

    int sum = a + b;

    // return value

    return sum;

  }

  

// method with no parameter

  public void title() {

System.out.println();  

    System.out.println("\tAddition of Two Numbers");

    System.out.println();

  }

public static void main(String[] args) {

// TODO Auto-generated method stub

 

        System.out.println("\n");

        System.out.print("\tMethods in Java");

        System.out.println("\n");

        

        int a = 12;

        int b = 3;


        // create an object of Methods

        Methods objdemo = new Methods();

        

        // calling methods

        

        objdemo.title();

        

        int result = objdemo.Addition(a, b);

        

        System.out.println("\tThe sum of " +a + " and " 

          + b + " is "  + result + ".");

        System.out.println();

        System.out.println("\tEnd of Program");

        System.out.println("\n");

        


}


}



Prime Number in Python

Prime Number in Python

 Machine Problem

Write a python program to ask the user to give  a number and then the progam check and determine
whether the given number is a prime number or not.
am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing


# Prime_Number.py
# Jake Rodriguez Pomperada,MAED-IT, MIT
# www.jakerpomperada.com
# www.jakerpomperada.blogspot.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental Philippines


# Machine Problem
# Write a python program to ask the user to give
# a number and then the progam check and determine
# whether the given number is a prime number or not.

print()
print("\tPrime Number in Python")
print()

num = int(input("\tGive a Number : "))

print()
if num > 1:
for i in range(2, num):
if (num % i) == 0:
print("\tThe given number",num, "is not a prime number.")
break
else:
print("\tThe given number",num, "is a prime number.")
else:
print("\tThe given number",num, "is not a prime number.")
print()
print("\tEnd of Program")
print()