Skip to content

Instantly share code, notes, and snippets.

@atrisovic
Created November 11, 2016 13:22
Show Gist options
  • Save atrisovic/296e3ba9c7b822479fe14958e1615354 to your computer and use it in GitHub Desktop.
Save atrisovic/296e3ba9c7b822479fe14958e1615354 to your computer and use it in GitHub Desktop.
Pavle
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
//ulazni podaci
int d = int.Parse(Console.ReadLine());
int s = int.Parse(Console.ReadLine());
//ono sto treba da se izracuna
int a = d * s;
//izlaz
Console.WriteLine(a);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment